Find and remove .svn folders from directories
by satheeshkumar[ Edit ] 2014-07-02 14:34:50
Find and remove .svn folders from directories using linux commands,
find . -name .svn -exec rm -rf {} ;
The above command will finds and remove all the .svn folders from current path..