Terminal Tip - Remove .svn Files
A quick way to remove all the annoying little .svn files recursively from a working copy. Its a bit of a hack way of doing a svn export.
find ./ -name ".svn" | xargs rm -Rf

A quick way to remove all the annoying little .svn files recursively from a working copy. Its a bit of a hack way of doing a svn export.
find ./ -name ".svn" | xargs rm -Rf