From a3c682729e437fc2bea82f59fee7b4c6b702389f Mon Sep 17 00:00:00 2001 From: Oliver Kurmis Date: Wed, 13 Apr 2016 17:27:37 +0200 Subject: [PATCH] add cheatsheet for subversion (svn) --- cheat/cheatsheets/svn | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 cheat/cheatsheets/svn diff --git a/cheat/cheatsheets/svn b/cheat/cheatsheets/svn new file mode 100644 index 0000000..88ce428 --- /dev/null +++ b/cheat/cheatsheets/svn @@ -0,0 +1,20 @@ +## update working copy from repository +svn update "/path" + +## show changed files in working copy +svn status + +## show what changed in local file +svn diff "/path/filename" + +## add files or folders +svn add "path/item" + +## revert local uncommited changes +svn revert "/path/file" + +## commit changes to repo +svn commit -m "message" "/path" + +## show help for 'svn diff' +svn help diff