If you develop software, it’s quite likely that you use Subversion. I found the following command at Snipplr and wanted to record it so that I could easily find it again.
Sometimes it is convenient to remove all the Subversion hidden files from a directory structure – it isn’t always convenient to export from the repository. Provided you are using Linux, the command below will do it:
find . -name ".svn" -exec rm -rf {} \;