/ 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
Copy this code and paste it in your HTML
svn rm $( svn status | sed -e '/^!/!d' -e 's/^!//' )