Merge pull request #286 from poohzrn/master

Fix #281: Consistent description styles
This commit is contained in:
Chris Lane 2016-08-05 15:03:49 -04:00 committed by GitHub
commit ef1dfb2168
1 changed files with 7 additions and 7 deletions

View File

@ -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