SVN Commands
This article contains some useful svn commands.
Commonly Used
File Changes
# Pull project
$ svn checkout [URI]
$ svn co [URI]
$ svn co svn+ssh://server/prj
# Update from server
$ svn update
$ svn up
# Add file
$ svn add
# Push to server
$ svn ci
# Check status
# ? untracked M modified A new on server
$ svn status
$ svn st
# Check file difference with version 100
$ svn diff -r 100 path/to/file
# Recursively revert all changes
$ svn revert -R
Ignore files
TODO
How do I ignore files in Subversion?
Account
TODO