Find topic
General webs
Web tools
Help
|
svn+ssh on command line (Windows)
- Required Software
- PuTTY?, Plink, Pageant: http://www.chiark.greenend.org.uk/~sgtatham/putty/
- svn.exe: http://subversion.tigris.org
- Installation
- Setup ssh (see http://tortoisesvn.net/ssh_howto)
- Setup Pageant: add private key (ie: key.ppk) [Pageant automatically enters your ssh key password]
- Verify ssh connection:
plink user@server
If all goes well, you should be logged on without having to enter password.
- Configure subversion to use plink for "svn+ssh". In the ${APPDATA}\Subversion\config file, under the [tunnels] section add (must use slash (/)):
ssh = /PATH/TO/plink.exe
- Verify svn+ssh:
svn list svn+ssh://user@host/$REPO_DIR
If all goes well, you should see the contents of the repository.
- Pageant must be running so for convenience you can add it to your startup programs as:
\\PATH\TO\pageant.exe \\PATH\TO\key.ppk
|