---
tags: [ vcs ]
---
# To Update working copy from repository:
svn update "/path"

# To Show changed files in working copy:
svn status

# To Show what changed in local file:
svn diff "/path/filename"

# To Add files or folders:
svn add "path/item"

# To Revert local uncommited changes:
svn revert "/path/file"

# To Commit changes to repo:
svn commit -m "message" "/path"

# To Show help for 'svn diff':
svn help diff
