Last Updated: February 25, 2016
·
445
· schoffelman

Remove SVN turds recursively from a directory

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

1 Response
Add your response

Don't forget that if you're creating a tarball or zipfile for someone, use 'svn export' first to avoid these "turds" in the first place.

over 1 year ago ·