Tips: How to remove .svn files from a directory ?
Posted: July 3rd, 2010 | Author: Pedro A. | Filed under: Geral | Tags: svn, tips | No Comments »Sometime you need this to clean some stuff
cd <em>mySourceCodeDir</em>
rm -rf `find . -type d -name .svn`
more info here
