How to recursively remove svn metadata
November 14, 2006
# find . -name .svn -print0 | xargs -0 rm -rf
will go thru a project and recursively remove the .svn metadata.
notes from the creation of MyFreeCopyright.com
# find . -name .svn -print0 | xargs -0 rm -rf
will go thru a project and recursively remove the .svn metadata.
February 28, 2007 at 11:55 am
This is a little nicer:
find -name “.svn” -type d -print | xargs rm -rf {}
October 13, 2007 at 7:17 pm
[...] How to recursively remove svn metadata « brain dump of an entrepreneur (tags: svn) [...]
August 3, 2008 at 11:31 am
coment above has slanted quotes, will not work
alias remove_svn_folders=”find -name ‘.svn’ -type d -print | xargs rm -rf {}”
October 14, 2008 at 11:45 pm
Hi!
My name is Jessika!