SVN: Remove all .svn folders in a directory tree


/ Published in: Bash
Save to your folder(s)

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.


Copy this code and paste it in your HTML
  1. find . -name ".svn" -type d -exec rm -rf {} \;

URL: http://snippets.dzone.com/posts/show/2486

Report this snippet


Comments


You need to login to view comments.