Last Updated: February 25, 2016
·
473
· netors

Remove all .svn folders and sub folders

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

2 Responses
Add your response

Or use "svn export <target>".

over 1 year ago ·

@Eyjafjallajokull right.., I use this when I don't have access to the actual repository or if I want to copy a bunch of files that have all those .svn folders

over 1 year ago ·