Saturday, June 9, 2012

Remove .svn file from your project

Terminal command to remove the .svn files from your project.

find . -name ".svn" -type d -exec rm -rf {} \;

usage: 
go to your project directory by making a 'cd'.
 cd /..../..../myproject

execute the command.
find . -name ".svn" -type d -exec rm -rf {} \;

thats it....simple and very effective :)



No comments:

Post a Comment