Showing posts with label sheet. Show all posts
Showing posts with label sheet. Show all posts

Tuesday, September 26, 2017

SVN cheat sheet

SVN cheat sheet


This is not the place to learn SVN commands, Im just creating this as a  reference to some important commands.

Revert local file change

svn revert <file_name>

Take a diff from two revisions

svn diff -r <old_revision>:<new_revision>

Update to the latest revision

svn update "<path>"

Update to a specific revision

svn update -<revision_number> "<path>"

Add new files/directory to track

svn add <file_name>|<directory_name>

Delete with a message

svn -m "<messahe>" delete "<path>"

download file now

Read more »