Remove all "missing" files from a SVN working copy


/ Published in: Bash
Save to your folder(s)

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.


Copy this code and paste it in your HTML
  1. svn rm $( svn status | sed -e '/^!/!d' -e 's/^!//' )

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.