Skip to content

Instantly share code, notes, and snippets.

@jachin
Created April 10, 2012 02:30
Show Gist options
  • Save jachin/2347981 to your computer and use it in GitHub Desktop.
Save jachin/2347981 to your computer and use it in GitHub Desktop.
subversion commands

List all the conflicts:

svn st | grep '^C'

To mark a file as executable:

svn propset svn:executable '' [filename]

Delete all unversioned files:

svn status | grep '^?' | awk '{print $2}' | xargs rm -rf
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment