You can use the following command to remove all the .svn folder in Linux.
find . -type d -name .svn -depth -exec rm -rf {} \;
Done =)
Reference: Remove .svn folder by command
You can use the following command to remove all the .svn folder in Linux.
find . -type d -name .svn -depth -exec rm -rf {} \;
Done =)
Reference: Remove .svn folder by command