/ Published in: Bash
URL: http://snippets.dzone.com/posts/show/2486
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
find . -name ".svn" -type d -exec rm -rf {} \;
You need to login to post a comment.
