To remove all SVN folders recursively, run below command in your terminal:
- Open Terminal
ShortCut: CTRL+ALT+T - First open your directory (in my case it is "/var/www/mySite")
cd /var/www/mySite - Run below command
find . -name ".svn" -exec rm -rf {} \;
0 comments:
Post a Comment