Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save nbucciarelli/376753 to your computer and use it in GitHub Desktop.
Save nbucciarelli/376753 to your computer and use it in GitHub Desktop.
cd into your base project folder
$ find . -type d -name '.svn' -print0 | xargs -0 rm -rdf
Either or works.
$ rm -rf `find . -type d -name .svn`
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment