cheat-fork-echo/cheat/cheatsheets/svn

21 lines
370 B
Plaintext
Raw Permalink Normal View History

# update working copy from repository
2016-04-13 17:27:37 +02:00
svn update "/path"
# show changed files in working copy
2016-04-13 17:27:37 +02:00
svn status
# show what changed in local file
2016-04-13 17:27:37 +02:00
svn diff "/path/filename"
# add files or folders
2016-04-13 17:27:37 +02:00
svn add "path/item"
# revert local uncommited changes
2016-04-13 17:27:37 +02:00
svn revert "/path/file"
# commit changes to repo
2016-04-13 17:27:37 +02:00
svn commit -m "message" "/path"
# show help for 'svn diff'
2016-04-13 17:27:37 +02:00
svn help diff