Guest User

Untitled

a guest
Dec 11th, 2018
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. # SVN Cheat sheet
  2.  
  3. ## Reverting
  4.  
  5. ### Whole Repository
  6. ```console
  7. $ svn merge -r HEAD:REV_NUMBER .
  8. ```
  9.  
  10. ### Individual Files
  11. ```console
  12. $ svn cat -r REV_NUMBER path/to/file > path/to/file
  13. ```
  14. nb: This revert the file in your working copy and will need to be commited
Add Comment
Please, Sign In to add comment