rm svn files

Ever copy a bunch of code from one project as a starting point for another to find that you’ve copied across all of the SVN files too?

Use the following code to recursively remove the .svn files from your project:

find ./ -name ".svn" | xargs rm -Rf

mat April 17th, 2012 0 comments Code