Enable svn+ssh remote logins
Installing Subversion for local use is general an easy install, but allowing remote access to your svn repository over SSH can be problomatic dependent upon your OS and the means taken to install.
For Darwinports and Fink on OS X the install location has to be added to users $PATHs, but there are extra steps outlined here for use of the svn+ssh means of access:
http://subversion.tigris.org/faq.html#ssh-svnserve-location
A much easier alternate is to sym link the svn binaries to a place on the default PATH (used by the SSH login):
This links all the binaries at once.
For Darwinports and Fink on OS X the install location has to be added to users $PATHs, but there are extra steps outlined here for use of the svn+ssh means of access:
http://subversion.tigris.org/faq.html#ssh-svnserve-location
A much easier alternate is to sym link the svn binaries to a place on the default PATH (used by the SSH login):
#For Darwinports ln -s /opt/local/bin/sv* /usr/bin/ #For Fink ln -s /sw/bin/sv* /usr/bin/
This links all the binaries at once.