Well i was trying to find a way to remove all the .svn files from a directory on OSx.
I found this code worked the best for fully removing all .svn files recursively.
find . -name .svn -print0 | xargs -0 rm -rf
Remember to cd to the directory you are wanting to remove the .svn files from.
cd Sites/project
Copyright ©2009 Jeremy Simkins. Theme Design by Noe Ruiz