<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	>
<channel>
	<title>Comments on: How to remove all .svn subdirs from a given directory</title>
	<atom:link href="http://macdiggs.com/2007/04/18/how-to-remove-all-svn-subdirs-from-a-given-directory/feed/" rel="self" type="application/rss+xml" />
	<link>http://macdiggs.com/2007/04/18/how-to-remove-all-svn-subdirs-from-a-given-directory/</link>
	<description>Digging the watery grave and talking about PHP, Rails and tech stuff..</description>
	<pubDate>Thu, 17 May 2012 16:26:53 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: hakre</title>
		<link>http://macdiggs.com/2007/04/18/how-to-remove-all-svn-subdirs-from-a-given-directory/comment-page-1/#comment-28185</link>
		<dc:creator>hakre</dc:creator>
		<pubDate>Tue, 04 Jan 2011 14:27:54 +0000</pubDate>
		<guid isPermaLink="false">http://macdiggs.com/index.php/2007/04/18/how-to-remove-all-svn-subdirs-from-a-given-directory/#comment-28185</guid>
		<description>-d did not the job for me in bash, but just using d did:

rm -rf `find . -type d -name ".svn"`</description>
		<content:encoded><![CDATA[<p>-d did not the job for me in bash, but just using d did:</p>
<p>rm -rf `find . -type d -name &#034;.svn&#034;`</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Christopher Lee</title>
		<link>http://macdiggs.com/2007/04/18/how-to-remove-all-svn-subdirs-from-a-given-directory/comment-page-1/#comment-28164</link>
		<dc:creator>Christopher Lee</dc:creator>
		<pubDate>Tue, 19 Oct 2010 23:03:55 +0000</pubDate>
		<guid isPermaLink="false">http://macdiggs.com/index.php/2007/04/18/how-to-remove-all-svn-subdirs-from-a-given-directory/#comment-28164</guid>
		<description>If you use bash, you can use wildcard expansion:  rm -rf **/.svn</description>
		<content:encoded><![CDATA[<p>If you use bash, you can use wildcard expansion:  rm -rf **/.svn</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Krysztof von Murphy</title>
		<link>http://macdiggs.com/2007/04/18/how-to-remove-all-svn-subdirs-from-a-given-directory/comment-page-1/#comment-27351</link>
		<dc:creator>Krysztof von Murphy</dc:creator>
		<pubDate>Mon, 11 Aug 2008 18:24:53 +0000</pubDate>
		<guid isPermaLink="false">http://macdiggs.com/index.php/2007/04/18/how-to-remove-all-svn-subdirs-from-a-given-directory/#comment-27351</guid>
		<description>Just a note to say « thank you ». Notes to oneself are so convenient for lazy people just googling for a problem :-)</description>
		<content:encoded><![CDATA[<p>Just a note to say « thank you ». Notes to oneself are so convenient for lazy people just googling for a problem :-)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mike</title>
		<link>http://macdiggs.com/2007/04/18/how-to-remove-all-svn-subdirs-from-a-given-directory/comment-page-1/#comment-26254</link>
		<dc:creator>mike</dc:creator>
		<pubDate>Mon, 15 Oct 2007 00:52:59 +0000</pubDate>
		<guid isPermaLink="false">http://macdiggs.com/index.php/2007/04/18/how-to-remove-all-svn-subdirs-from-a-given-directory/#comment-26254</guid>
		<description>Yep. But sometimes you just want to copy a versioned directory structure to a different location (another project, another dir of the same project, etc).

There are, of course, svn copy and svn move (and of course svn export) commands which leave you with a proper directory structure, but sometimes it's just faster and easier to copy that directory using Finder (or Explorer), and then remove those pesky .svn dirs before "svn add"-attaching that copied directory to the new location.</description>
		<content:encoded><![CDATA[<p>Yep. But sometimes you just want to copy a versioned directory structure to a different location (another project, another dir of the same project, etc).</p>
<p>There are, of course, svn copy and svn move (and of course svn export) commands which leave you with a proper directory structure, but sometimes it&#039;s just faster and easier to copy that directory using Finder (or Explorer), and then remove those pesky .svn dirs before &#034;svn add&#034;-attaching that copied directory to the new location.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Torrey</title>
		<link>http://macdiggs.com/2007/04/18/how-to-remove-all-svn-subdirs-from-a-given-directory/comment-page-1/#comment-26253</link>
		<dc:creator>Torrey</dc:creator>
		<pubDate>Sun, 14 Oct 2007 18:26:55 +0000</pubDate>
		<guid isPermaLink="false">http://macdiggs.com/index.php/2007/04/18/how-to-remove-all-svn-subdirs-from-a-given-directory/#comment-26253</guid>
		<description>This is what svn export is for. Just run 'svn export srcdir ~/targetdir '. It will export the 'meat' and not the .svn dirs from the srcdir to the targetdir</description>
		<content:encoded><![CDATA[<p>This is what svn export is for. Just run &#039;svn export srcdir ~/targetdir &#039;. It will export the &#039;meat&#039; and not the .svn dirs from the srcdir to the targetdir</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dean</title>
		<link>http://macdiggs.com/2007/04/18/how-to-remove-all-svn-subdirs-from-a-given-directory/comment-page-1/#comment-26236</link>
		<dc:creator>Dean</dc:creator>
		<pubDate>Tue, 09 Oct 2007 09:42:28 +0000</pubDate>
		<guid isPermaLink="false">http://macdiggs.com/index.php/2007/04/18/how-to-remove-all-svn-subdirs-from-a-given-directory/#comment-26236</guid>
		<description>Thanks Matt

Been looking for an elegant solution to this problem for a couple of days.

Saved me a load of pain :-)

Dean</description>
		<content:encoded><![CDATA[<p>Thanks Matt</p>
<p>Been looking for an elegant solution to this problem for a couple of days.</p>
<p>Saved me a load of pain :-)</p>
<p>Dean</p>
]]></content:encoded>
	</item>
</channel>
</rss>

