Skip to content

Instantly share code, notes, and snippets.

@typeoneerror
Created August 8, 2011 04:57
Show Gist options
  • Save typeoneerror/1131232 to your computer and use it in GitHub Desktop.
Save typeoneerror/1131232 to your computer and use it in GitHub Desktop.
Remove deleted files from svn
function svn_del
{
svn status | grep '\!' | awk '{print $2;}' | xargs svn rm;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment