BASICS
Create working copy
svn checkout url/path
Display information of working copy or repository
svn info
Show changes of the working copy
svn status
Show diff
svn diff
svn diff FILE_OR_DIR
Make changes to the working copy
svn add FILE_OR_DIR
svn delete FILE_OR_DIR
svn move SRC DST
Save changes to the distant repository
svn commit -m "message"
Retrieve changes from the distant repository
svn update
Other
-
svn log
-
svn list
-
svn revert
-
svn merge
-
svn shelve
-
svn switch