26 April 2011

Remove SVN files from a project

From within the project directory, run the following shell command:
find ./ -iname *.svn* -print0 | xargs -0 /bin/rm -rf

2 comments:

مهدي حجازي said...

why you don't just use this?
svn export [-r REV] PATH1[@PEGREV] [PATH2]

mhewedy said...

Simply.. because I don't know about it :)