Created
June 27, 2012 00:03
-
-
Save jacksonfdam/3000321 to your computer and use it in GitHub Desktop.
Remove all "missing" files from a SVN working copy
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
# If you accidentally deleted files from a subversion working copy, subversion marks them missing instead of | |
# deleted. This command will delete them correctly from the repository. | |
svn rm $( svn status | sed -e '/^!/!d' -e 's/^!//' ) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment