Skip to content

Instantly share code, notes, and snippets.

@rauluranga
Created February 8, 2011 19:38
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
revert (roll back) to a previous revision with Subversion
svn merge -r [current_version]:[previous_version] [repository_url]
#example:
svn merge --dry-run -r 73:68 http://my.repository.com/my/project/trunk
svn merge -r 73:68 http://my.repository.com/my/project/trunk
svn commit -m "Reverted to revision 68."
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment