Since we’ve started using SVN I’ve found I sometimes run into some errors when I try to commit a directory that I’ve copied from another repository. Here’s how to get rid of those old, hidden .svn folders so SVN can create new ones. Originally from here.

find . -name .svn -print0 | xargs -0 rm -rf