Subversion Quick Reference


Summary

Just my cheat-sheet for using subversion.

In most cases, target is a file or directory (and is optional).


Detail

Initial checkout. This creates the first level of directories, but doesn't actually get them all (co for checkout):

svn -N co svn://url localdir

Get all changes (up for update):

svn up target

List changes (stat for status):

svn stat target

Commit changes (ci for check-in):

svn ci target

Add:

svn add file

Remove:

svn rm file