When I am copying sites around between servers, adding some parts to new repos, and adding other parts else where I seem to get cluttered up with .SVN files left over from the previous version control system. Here is a handy command which goes through the directories and deletes all the .SVN files.
rm -rf find . -type d -name .svn
