This terminal command will remove any files with a file extension of .svn. This is a nice way to clean up repos.
find . -name ‘.svn’ | xargs rm -rf
You must be logged in to post a comment.
Leave a Comment
You must be logged in to post a comment.