mirror of
https://github.com/cheat/cheat.git
synced 2024-11-14 08:01:09 +01:00
Merge pull request #276 from oliworx/patch-1
add cheatsheet for subversion (svn)
This commit is contained in:
commit
06a368fb1f
1 changed files with 20 additions and 0 deletions
20
cheat/cheatsheets/svn
Normal file
20
cheat/cheatsheets/svn
Normal file
|
@ -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
|
Loading…
Reference in a new issue