SSH+SVN Command Line with –username and –password
This is very obvious now, but wasn’t when I spent an hour searching today. If you’re using SVN from the command line, against a server requiring SSL, your URL will look something like this:
svn co svn+ssh://svn.domain.com/repository
You can specify the username and password like this:
svn co svn+ssh://svn.domain.com/repository –username user –password pass
But, running that command you’ll get [...]