Difference between revisions of "SVN server"

From Wikiid
Jump to: navigation, search
(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...)
 
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 20: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

Repositories: