This is a very short post about removing the SVN files and folders from your directories.
find ./ -name ".svn" | xargs rm -Rf
Hi,you can also use the -exec flag
find ./ -name .svn -exec rm -rf {} \;
More information about formatting options
Comments
Hi,you can also use the -exec
Hi,you can also use the -exec flag
Post new comment