How to start SVN export without a username and password

Is it possible to export SVN without user request and transfer it?

I give my username and pass in the command:

svn export --username bavhbavh --password blahblah svn://svn.someSite.com/folder/folder2/exportFile"

But at startup, it still seems to be asking me for a username and password.

+5
source share
1 answer

I do the same thing in one of my build scripts, although I also use this option --non-interactive(no interactive hints), and it seems to work very well.

So your command will look something like this:

svn export --username bavhbavh --password blahblah --non-interactive svn://svn.someSite.com/folder/folder2/exportFile"
+8
source

All Articles