Tuesday 26 April 2011

How to remove .svn folder using linux command?

Go to that folder and run the following command:

find ./ -name ".svn" | xargs rm -Rf


Cheers!

No comments:

Post a Comment