svn checkout URL/PATH – check out a working copy from a remote repository URL/local repository PATH. (Shorthandsvn co.)

svn update [PATH...] – update your working copy.  (Shorthandsvn up.)

svn add PATH... – add new files or directories to the repository.

svn delete URL/PATH ... – delete an item from a working copy or the repository.

svn commit – send changes from your working copy to the repository.  (Shorthandsvn ci.)

svn commit -m ’the log message’ – specify the log message that will be associated with the currentcommit.

svn status – print the status of working copy files and directories.  (Shorthandsvn st.)