Blog Post

Recursively remove all .svn directories

🗓 February 16, 2012 :: 🕑 1 min read :: 👏 0 💬 0

While moving some of my old projects from my svn server at home over to Bitbucket, I used this snippets to remove all the .svn directories.

find . -name ".svn" -type d -exec rm -rf {} \;

Can also be very useful when you accidentally did a checkout instead of a export.

Ben Shi

While moving some of my old projects from my svn server at home over to Bitbucket, I used this snippets to remove all the .svn directories…

https://hbish.com/recursively-remove-all-svn-directories/


Fetching Replies...