- Show all of the committed history:
svn log
- Show the current repositories' info, including its URL:
svn info
- Commit current working tree:
svn commit -m "YOUR COMMIT MESSAGE"
- Update to the latest version:
svn update
- Roll back to relevant version from current working tree:
svn merge -r currentVersionNumber:versionNumberToGoBackTo YOUR_REPOS_URL
- Show the differences form version X between version Y:
svn diff -r X:Y [YOUR_REPOS_URL]
- Show current status:
svn status