HOWTO Access The SVN Server: Difference between revisions

From Research
Jump to navigation Jump to search
(New page: For those who don't like to read, the URL to any SVN repository (replace $user with your username and $repository with your repository name) is:<br /> '''svn+ssh://$user@svn.iat.sfu.ca/$re...)
 
(No difference)

Latest revision as of 21:18, 24 October 2008

For those who don't like to read, the URL to any SVN repository (replace $user with your username and $repository with your repository name) is:
svn+ssh://$user@svn.iat.sfu.ca/$repository


Command Line on Linux

Checkout:

# svn checkout svn+ssh://$user@svn.iat.sfu.ca/$repository

Add a file to SVN:

# svn add /path/to/file

Commit:

# svn commit /path/to/local/repository