SVN server
From Wikiid
Revision as of 19:06, 4 February 2008 by SteveBaker (Talk | contribs)
Here is a tiny Subversion (svn) HOWTO. It assumes that you've already created a repository.
Initial Import
To put your content into the repository:
Suppose your content (on your local computer) is in /home/abcd and the repository directory is abcdsvn:
cd /home svn import abcd http://www.sjbaker.org/abcdsvn -m "Initial import"
Checking out the entire repository
cd /home svn checkout http://www.sjbaker.org/abcdsvn
That created '/home/abcdsvn' - so you'll probably want to say:
ln -s abcdsvn abcd
...so you can pretend it's under /home/abcd