I found the way to delete all .svn folder from my project folder in Linux.
To delete all .svn folder in Linux just follow the steps below:-
- Start Terminal
- change your current directory to your project folder (ex: /var/www/html/PROJECTNAME)
- type
[ check if the file list is proper to be sure :) ]
find ./ -name ".svn"
- type
find ./ -name ".svn" | xargs rm -Rf
and enter. - Done, all your .svn folder has been deleted.
Hope it helps