Subversion Over SSH Overview
Posted by on 02 July 2012 10:29 AM
|
|
Before You Start
Creating a RepositoryThis is a guide on how I did it, you may want to create your own structure. Create svn folder in your home folder: $ cd ~ Give the repo an SVN filesystem: $ svnadmin create --fs-type fsfs svn Then we need to hack bash a little to let us use SSH to login (and use pico or vi to edit): $ cd ~ Then find the line containing: mesg y Replace it with: tty -s That's it for repo creation! ConnectThe setup is pretty easy. Really, a few commands and you're done. svn+ssh://[email protected]/home/YOURUSERNAME/svn The program will ask you for your password, you give it, and ta-da! You're ready to go! | |
|