Information Technology Knowledge Base

April 1, 2008

Recursively removing .svn directories

Filed under: Linux, Miscellaneous — Hedwig Lodrigo @ 12:13 pm
Use this command
find . -name .svn -print0 | xargs -0 rm -rf
You could also use “svn export”…

Powered by WordPress