Svn: URL Options REPO: Authorization Failed:

I use two commands: 1) svn ls with username and password 2) svn mkdir with username and password. svn ls works without any problems, but svn mkdir fails with the following error message: " svn: OPTIONS" URL REPO: authorization failed: Server authentication failed: rejected main call

Can someone please help me with this? I have looked for this many times. People have reported similar problems, but not exactly the same.

+7
source share
3 answers

is your https url repo?

in this case, add the following key before the command.

svn --non-interactive --trust-server-cert --username urname --password ******** <command> 
+2
source

If you have Tortoise SVN installed. Go to settings and clear the cache. It must be under the "saved data". Open the repo browser, accept the certificate and save the password.

what is it!

+2
source

I only got this with a blank (forgotten) password when using the --password option.

0
source

All Articles