Skip to content

Instantly share code, notes, and snippets.

@metafeather
Created October 6, 2009 12:27
Show Gist options
  • Save metafeather/202967 to your computer and use it in GitHub Desktop.
Save metafeather/202967 to your computer and use it in GitHub Desktop.
# 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):
# For MacPorts
ln -s /opt/local/bin/sv* /usr/bin/
# For Fink
ln -s /sw/bin/sv* /usr/bin/
# This links all the binaries at once.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment