Created
March 16, 2012 13:29
-
-
Save nexik/2050063 to your computer and use it in GitHub Desktop.
SVN:commands
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # add all new files to svn repo | |
| svn status | grep ? | xargs svn add | |
| # add to remove from svn (in next commit) all localy deleted files | |
| svn status | grep \! | sed 's/\!//' | xargs svn delete | |
| # after manually resolving conflict | |
| svn resolve PATH --accept working | |
| # ssh checkout | |
| svn co svn+ssh://user@ip/repo |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment