Created
August 17, 2012 03:24
-
-
Save eribeiro/3375668 to your computer and use it in GitHub Desktop.
Mark files that were manually deleted as deleted by SVN
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 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