Subversion: Difference between revisions
No edit summary |
|||
| Line 1: | Line 1: | ||
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== | ==See Also== | ||
* [[Google:{{PAGENAME}}]] | * [[Google:{{PAGENAME}}]] | ||
* '''[[:Category:{{PAGENAME}}]]''' | * '''[[:Category:{{PAGENAME}}]]''' | ||
* [[Subversion/client]] | * [[Subversion/client]] | ||
* [[Subversion/Vendor Sources]] | * [[Subversion/Vendor Sources]] | ||
| Line 168: | Line 172: | ||
file:///var/svn/myrepo/www.example.com/trunk/images/smile1.png | file:///var/svn/myrepo/www.example.com/trunk/images/smile1.png | ||
</pre> | </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]] | [[Category:Version Control]] | ||