From 9cf1a5761d1673c8df7178aaa7a09bd6cbedc880 Mon Sep 17 00:00:00 2001 From: Lasse Nielsen Date: Mon, 18 Jul 2016 17:25:06 +0200 Subject: [PATCH] Fix #281: Consistent description styles --- cheat/cheatsheets/svn | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/cheat/cheatsheets/svn b/cheat/cheatsheets/svn index 88ce428..8e2bf7a 100644 --- a/cheat/cheatsheets/svn +++ b/cheat/cheatsheets/svn @@ -1,20 +1,20 @@ -## update working copy from repository +# update working copy from repository svn update "/path" -## show changed files in working copy +# show changed files in working copy svn status -## show what changed in local file +# show what changed in local file svn diff "/path/filename" -## add files or folders +# add files or folders svn add "path/item" -## revert local uncommited changes +# revert local uncommited changes svn revert "/path/file" -## commit changes to repo +# commit changes to repo svn commit -m "message" "/path" -## show help for 'svn diff' +# show help for 'svn diff' svn help diff