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