Skip to content

Instantly share code, notes, and snippets.

@itsdamslife
Created February 6, 2014 09:27
Show Gist options
  • Save itsdamslife/8841023 to your computer and use it in GitHub Desktop.
Save itsdamslife/8841023 to your computer and use it in GitHub Desktop.
Terminal command to remove all .svn folders recursively from your working copy
// Make your working copy directory as current working directory
cd /path/to/your/working/copy/directory
// Copy and paste this command in your terminal and hit enter/return
sudo find . -type d -name .svn -exec rm -rf {} \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment