Recursively remove all .svn directories
While moving some of my old projects from my svn server at home over to Bitbucket, I used this snippets to remove all the .svn directories.
find . -name ".svn" -type d -exec rm -rf {} \;
Can also be very useful when you accidentally did a checkout instead of a export.