Skip to content

Instantly share code, notes, and snippets.

@jacksonfdam
jacksonfdam / gist:3000321
Created June 27, 2012 00:03
Remove all "missing" files from a SVN working copy
# 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/^!//' )