/ Published in: Bash
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.
Expand |
Embed | Plain Text
svn rm $( svn status | sed -e '/^!/!d' -e 's/^!//' )
Comments
Subscribe to comments
You need to login to post a comment.

Doesn't work with file paths with whitespace.
Great! It works!