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