recursevly remove .svn files from an existing repo
If you need to take a project out of scm, you can run this bash script from the top folder - and it will remove all .svn folders recursevly (sp)
Works well for
- changing an svn checkout into and svn export
- switching from svn to git
Works well for
- changing an svn checkout into and svn export
- switching from svn to git
find . -type d -name '.svn' -exec rm -rf {} \;