Wednesday, 9 October 2013

How to remove .svn folder recursively in Ubuntu System



However the problem is that SVN engine that you used created in every folder of the project the .svnmetadata directory.
If you want to clean all folders of the project of this hidden folder.
Here is the command you can use to clean all .svn.

Open the Ubuntu terminal, Goto to the particualar folder 

1) cd /var/www/app/

2)  type the following command 
find -type d -name '.svn' -exec rm -rfv {} \;

It will remove all the .svn metadata directory from the folder ..


Enjoy ubuntu

No comments:

Post a Comment