Setting Your SVN Root with svn+sshPosted 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?
| << An Alternative JSF Navigation Handler | Back to Blog | Faster Builds with Maven in Netbeans >> |