Advertisement
Guest User

svn for pugs

a guest
Jul 23rd, 2010
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Diff 0.57 KB | None | 0 0
  1. Changing/adding stuff in the pugs repository (use with care), assuming that you have a local copy:
  2.  
  3. $ svn up
  4. # This updates your local copy from the repository
  5.  
  6. $ svn add filename
  7. # Add a filename to files controlled by svn
  8.  
  9. $ svn add directoryname
  10. # Add a directory (recursive!)
  11.  
  12. $ svn move filename newfilename
  13. # Renames/moves a file (essentially a copy & delete)
  14.  
  15. $ svn status
  16. # Checks for changes, displays a summary
  17.  
  18. $ svn diff
  19. # Shows differences in diff(1) format
  20.  
  21. $ svn commit -m 'Brief descriptive message about your change'
  22. # Commits to the repository
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement