This page is about 'Subversion' which is more commonly known as svn.
{{highlight|
|text = if you need help [[Git/migrating to git|migrating to git]] then call Greg Rundlett at eQuality-Tech.com }}
==See Also==
* [[Google:{{PAGENAME}}]]
* '''[[:Category:{{PAGENAME}}]]'''
* [[Subversion/client]]
* [[Subversion/Vendor Sources]]
file:///var/svn/myrepo/www.example.com/trunk/images/smile1.png
</pre>
=== Deleting untracked files ===
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?
<source lang="bash">
svn status -no-ignore | grep -e ^\? -e ^I | awk '{ print $2 }' | xargs --no-run-if-empty rm -r
</source>
[[Category:Version Control]]