Setting Your SVN Root with svn+ssh

Posted by Roger Keays, 20 August 2008, 2:05 AM

Accessing your subversion repo via ssh is pretty nifty because you don't have to set up a special server or auth methods. The only problem is that out of the box, you are going to have to use the full path to your subversion root in the URLs. i.e. something like:

svn+ssh://svn.example.com/var/local/subversion/myproject

If you prefer to use a URL something like

svn+ssh://svn.example.com/myproject

you need to pass the -r option to svnserve when it is executed on the server. To do this, I usually replace the svnserve binary with a shell script that wraps the original program:

#!/bin/sh
/usr/bin/svnserve-real -r /var/local/subversion $*

Where svnserve-real is the orginal binary. The only problem with this method is that 'apt-get upgrade' likes to reinstall the binary. Perhaps somebody else has a better trick?

Add a comment

Please visit http://www.ninthavenue.com.au/blog/setting-your-svn-root-with-svn-ssh to add your comments.