This is a draft cheat sheet. It is a work in progress and is not finished yet.
Checkout Working Copy
svn checkout [repository] |
Checkout working copy into current folder |
svn co [repository] |
Checkout alias |
svn co [repository] [target] |
Checkout working copy into target folder |
Update Working Copy
svn update "/path" |
Update path |
svn update -r1337 "/path" |
Update path to revision 1337 |
Add Files and Folders
svn add * |
Add all items, recursively |
svn add [itemname] |
Add itemname (if folder, adds recursively) |
Commit Changes
svn commit [path] |
Commit changes to path |
svn ci [path] |
Commit alias |
svn ci -m "Message" [path] |
Commit with log message |
|
|
|
|
|