HOWTO Access The SVN Server
Jump to navigation
Jump to search
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