How to clean up svn files using terminal in Ubuntu??
Use the following command
sudo find . -name .svn -exec rm -rf {} \;
This will remove all the svn files in the project and you can check the same by executing the command
find . -name .svn
Use the following command
sudo find . -name .svn -exec rm -rf {} \;
This will remove all the svn files in the project and you can check the same by executing the command
find . -name .svn