Skip to content

Latest commit

 

History

History
27 lines (18 loc) · 411 Bytes

svn.md

File metadata and controls

27 lines (18 loc) · 411 Bytes

Check out a working copy (i.e. clone):

svn checkout <url> [path]

Pull latest changes from remote:

svn update

Undo local changes to file:

svn revert <file path>

Undo all local changes:

svn revert --recursive .

Note: For merging and conflict resolution use a GUI (e.g. SmartSVN), and for everything else use git-svn