tags:

views:

208

answers:

2

Hi
I want to checkout something out of an repository .. but wenn i type :

svn co svn+ssh://URL

i get asked for the password.I suppose he uses the username from my console which aren't the same.

So how can i checkout something with svn+ssh with a different loginname ?

+1  A: 

Use --username:

svn co --username fred svn+ssh://URL
Jon Skeet
+3  A: 

SSH lets you select user in the connection URL:

svn co svn+ssh://alabaster@URL
Alabaster Codify