Difference between revisions of "SVN server"
From Wikiid
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...) |
SteveBaker (Talk | contribs) |
||
Line 19: | Line 19: | ||
...so you can pretend it's under /home/abcd | ...so you can pretend it's under /home/abcd | ||
+ | |||
+ | == Repositories: == | ||
+ | * [http://www.sjbaker.org/plib2svn PLIB II] | ||
+ | * [http://www.sjbaker.org/gameToolssvn gameTools] | ||
+ | * [http://www.sjbaker.org/unificationsvn Unification] |
Revision as of 19:06, 4 February 2008
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