SVN server

From Wikiid
Revision as of 20:04, 4 February 2008 by SteveBaker (Talk | contribs) (New page: 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 l...)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

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