Skip to content

Instantly share code, notes, and snippets.

@pedro-stanaka
Created June 14, 2013 02:07
Show Gist options
  • Save pedro-stanaka/5778959 to your computer and use it in GitHub Desktop.
Save pedro-stanaka/5778959 to your computer and use it in GitHub Desktop.
Remove all SVN(eww) metadata folders recursivelly under the current directory. Usefull to move a svn_repo to a Git repo.
#!/bin/sh
echo "recursively removing .svn folders from"
pwd
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