Search and remove .svn files recursively
You must have come across this problem before when someone sent you the code with lot of .svn folder inside it.You can recursively remove those folder either using cygwin on windows machine or on any unix platform.
The command to remove .svn folder is:
find ./ -name .svn -exec rm -rf {} \;
0 Comments:
Post a Comment
<< Home