I have to check some code and run it. I have the URL:
svn+ssh://myuser@www.myclient.com/home/svn/project/trunk
I have a file with their private key. What do I do to get this code?
feedback
|
|
The private key goes on the client machine, often named as This is presuming that the corresponding public key exists on the server in | |||
|
feedback
|
|
If you need to use a custom key just for svn, the following will work:
http://labs.kortina.net/2010/01/30/svn-checkout-with-private-key-over-ssh/ | |||
|
feedback
|
|
Add this entry to your ~/.ssh/config file
for more option see the ssh_config man page | |||
|
feedback
|
|
Add the private key to your | |||||
|
feedback
|
|
Here are the steps that I used to connect from the Mac OS X command line to my server via svn+ssh: On server:
Copy contents of mykey.pub to ~/.ssh/authorized_keys (create authorized_keys file if it doesn't exist) Download mkey to your local machine and run:
checkout from your svn server with ssh:
Delete mkey and mkey.pub from your server | |||
|
feedback
|