Saturday, January 12, 2013

SVN Command to Delete All Missing Files

Found this handy command from Stack Overflow to SVN Delete all missing files.


svn st | grep ^! | awk '{print " --force "$2}' | xargs svn rm

I found this from this article:

http://stackoverflow.com/questions/9600382/svn-command-to-delete-all-locally-missing-files

No comments:

Post a Comment