Skip to content

Instantly share code, notes, and snippets.

@dharFr
Created February 20, 2012 17:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dharFr/1870171 to your computer and use it in GitHub Desktop.
Save dharFr/1870171 to your computer and use it in GitHub Desktop.
Svn: how to remove all deleted files from repository?
# for more details, see: http://stackoverflow.com/questions/4608798/svn-how-to-remove-all-deleted-files-from-repository
svn st | grep '^!' | awk '{print $2}' | xargs svn delete --force
@dharFr
Copy link
Author

dharFr commented Dec 13, 2012

You may want to turn this into a function for more flexibility : https://github.com/dharFr/dotfiles/blob/master/.functions#L71

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment