Skip to content

Instantly share code, notes, and snippets.

@eribeiro
Created August 17, 2012 03:24
Show Gist options
  • Select an option

  • Save eribeiro/3375668 to your computer and use it in GitHub Desktop.

Select an option

Save eribeiro/3375668 to your computer and use it in GitHub Desktop.
Mark files that were manually deleted as deleted by SVN
# Register all files that were manually delete on SVN as deleted (sync)
#!/bin/bash
svn status | grep "^\!" | sed 's/^\! *//g' | xargs svn rm
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment