Posts

Showing posts with the label SVN

Delete all .svn folders in project directory on Mac

In terminal in project directory: find ./ -name ".svn" | xargs rm -Rf  Read here about xargs.