How to quickly delete files from Subverseion
Monday, October 22nd, 2007This is a modification of my quickly add files to Subversion post to allow you to delete files in SVN that have been locally deleted:
$ svn st | grep ^! | cut -b7- | xargs svn delete
Of course, you’ll need to commit the files:
$ svn commit
-Chris