How to strip a project of all hidden .svn files.

More often then I’d like to admit I need to strip an entire project of it’s SVN folders and files. Instead of going in each folder individually, I use this useful terminal command.

cd /some/of/your/folders/
                rm -rf `find . -type d -name .svn`