/ Published in: Bash
You did a checkout when you really wanted to do an export. Now there are tons of .svn folders in your project, and you need them to go away. Shell scripting to the rescue.
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
find . -name ".svn" -type d -exec rm -rf {} \;
URL: http://snippets.dzone.com/posts/show/2486