|text = if you need help [[Git/migrating to git|migrating to git]] then call Greg Rundlett at eQuality-Tech.com {{CompanyName}} }}
==See Also==
Say your project spews build artifacts into your source tree, and doesn't clean up after itself. How do you clean out your working copy without having to do a clean checkout?
svn status . | grep '^?' | sed 's/^? */svn add "/g' | sed 's/$/"/g' | sh
</source>
=== Find in svn status -===Old versions of Subversion would store metadata throughout the working copy, and offers no-ignore facility for searching the content. While you could and should setup a [[Search| grep fantastic indexing service]], you <source lang="bash">find . -e ^name \? .svn/ -e ^I | awk prune -o -name '*.php'-exec grep -l needle { print $2 }\; | sed 's/^/# /' | xargs --no-run-if-empty rm -r