Remove missing files from svn (forget)

Alec Jacobson

December 14, 2013

weblog/

I often forget to delete files under version control using the svn rm command. Then I still need to issue that command but auto-complete won't help me out. I use this snippet to delete any missing (already deleted) files.

svn rm `svn st | sed -n "s/^\! *//p"`