Changes

Jump to: navigation, search

FAQ

1 byte removed, 13:25, 6 October 2006
SVN Common Commands
#: View a [http://subversion.tigris.org/links.html#clients list of SVN clients] available for various platforms and development environments.
===SVN Common Commands===
# * To access the svn repository for your project, use the following command to 'check out' your project. #<pre>
svn checkout svn://cdot.senecac.on.ca/test/<yourprojecthere>
</pre>
# * Once you have your repository sandbox, change directories into the project folder.# * To add a file to your svn repository, use the following command:
<pre>
svn add <filename>
</pre>
# * To remove a file from your svn repository, type:
<pre>
svn remove <filename>
</pre>
# * To update the repository with your latest changes to the repository, type:
<pre>
svn commit -m "type a message here that explains what your committing"
</pre>
# * To update the sandbox located on your local machine to the same version on the repository, type:
<pre>
svn update
</pre>
# * To view all the changes (commits) made on a svn repository, type:
<pre>
svn log
1
edit

Navigation menu