Skip to content

Instantly share code, notes, and snippets.

@jacksonfdam
Created June 27, 2012 00:03
Show Gist options
  • Save jacksonfdam/3000321 to your computer and use it in GitHub Desktop.
Save jacksonfdam/3000321 to your computer and use it in GitHub Desktop.
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/^!//' )
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment