Skip to content

Instantly share code, notes, and snippets.

@nexik
Created March 16, 2012 13:29
Show Gist options
  • Save nexik/2050063 to your computer and use it in GitHub Desktop.
Save nexik/2050063 to your computer and use it in GitHub Desktop.
SVN:commands
# 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