<?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: Recursively delete .svn directories</title>
	<atom:link href="http://stereointeractive.com/blog/2009/02/17/recursively-delete-svn-directories/feed/" rel="self" type="application/rss+xml" />
	<link>http://stereointeractive.com/blog/2009/02/17/recursively-delete-svn-directories/</link>
	<description>Development Blog</description>
	<lastBuildDate>Thu, 17 Nov 2011 00:02:13 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: Lawrence Krubner</title>
		<link>http://stereointeractive.com/blog/2009/02/17/recursively-delete-svn-directories/comment-page-1/#comment-430</link>
		<dc:creator>Lawrence Krubner</dc:creator>
		<pubDate>Mon, 15 Jun 2009 07:38:41 +0000</pubDate>
		<guid isPermaLink="false">http://stereointeractive.com/blog/?p=164#comment-430</guid>
		<description>Thanks again for this tip. One thing to note: for me, this ran into problems with directories:

find . -type d -name .svn -exec rm {} \;

I got &quot;.svn is a directory&quot; errors. 

I had to add the rf  flags: 

find . -type d -name .svn -exec rm -rf {} \;

That worked for me.</description>
		<content:encoded><![CDATA[<p>Thanks again for this tip. One thing to note: for me, this ran into problems with directories:</p>
<p>find . -type d -name .svn -exec rm {} \;</p>
<p>I got &#8220;.svn is a directory&#8221; errors. </p>
<p>I had to add the rf  flags: </p>
<p>find . -type d -name .svn -exec rm -rf {} \;</p>
<p>That worked for me.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Closer To The Ideal &#187; Blog Archive &#187; Cleanse a directory tree of Subversion</title>
		<link>http://stereointeractive.com/blog/2009/02/17/recursively-delete-svn-directories/comment-page-1/#comment-427</link>
		<dc:creator>Closer To The Ideal &#187; Blog Archive &#187; Cleanse a directory tree of Subversion</dc:creator>
		<pubDate>Thu, 11 Jun 2009 22:39:34 +0000</pubDate>
		<guid isPermaLink="false">http://stereointeractive.com/blog/?p=164#comment-427</guid>
		<description>[...] This has often tripped me up: I copy a folder (which is under version control) to another location and all the&#8221;.svn&#8221; files get copied too. So this is useful: Scott Meves posts a trick for recursively clearing out the &#8220;.svn&#8221; files. [...]</description>
		<content:encoded><![CDATA[<p>[...] This has often tripped me up: I copy a folder (which is under version control) to another location and all the&#8221;.svn&#8221; files get copied too. So this is useful: Scott Meves posts a trick for recursively clearing out the &#8220;.svn&#8221; files. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sqz</title>
		<link>http://stereointeractive.com/blog/2009/02/17/recursively-delete-svn-directories/comment-page-1/#comment-394</link>
		<dc:creator>sqz</dc:creator>
		<pubDate>Tue, 24 Mar 2009 14:06:38 +0000</pubDate>
		<guid isPermaLink="false">http://stereointeractive.com/blog/?p=164#comment-394</guid>
		<description>I always forget these smart oneliners, I always end up with :

rm -rf */.svn
rm -rf */*/.svn
rm -rf */*/*/.svn

also works like a dog :)
maybe one should make an alias for the smart oneliner</description>
		<content:encoded><![CDATA[<p>I always forget these smart oneliners, I always end up with :</p>
<p>rm -rf */.svn<br />
rm -rf */*/.svn<br />
rm -rf */*/*/.svn</p>
<p>also works like a dog <img src='http://stereointeractive.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
maybe one should make an alias for the smart oneliner</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: nresni</title>
		<link>http://stereointeractive.com/blog/2009/02/17/recursively-delete-svn-directories/comment-page-1/#comment-387</link>
		<dc:creator>nresni</dc:creator>
		<pubDate>Wed, 11 Mar 2009 12:15:14 +0000</pubDate>
		<guid isPermaLink="false">http://stereointeractive.com/blog/?p=164#comment-387</guid>
		<description>hi,

You can also use svn export

export a clean project...</description>
		<content:encoded><![CDATA[<p>hi,</p>
<p>You can also use svn export</p>
<p>export a clean project&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mikael.randy</title>
		<link>http://stereointeractive.com/blog/2009/02/17/recursively-delete-svn-directories/comment-page-1/#comment-376</link>
		<dc:creator>mikael.randy</dc:creator>
		<pubDate>Thu, 19 Feb 2009 09:54:39 +0000</pubDate>
		<guid isPermaLink="false">http://stereointeractive.com/blog/?p=164#comment-376</guid>
		<description>You can also use
&lt;code&gt;
rm -rf `find . -type d -name .svn`
&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>You can also use<br />
<code><br />
rm -rf `find . -type d -name .svn`<br />
</code></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Scott Meves</title>
		<link>http://stereointeractive.com/blog/2009/02/17/recursively-delete-svn-directories/comment-page-1/#comment-373</link>
		<dc:creator>Scott Meves</dc:creator>
		<pubDate>Tue, 17 Feb 2009 22:51:25 +0000</pubDate>
		<guid isPermaLink="false">http://stereointeractive.com/blog/?p=164#comment-373</guid>
		<description>Thanks Jon -- I just updated the post to reflect your method.</description>
		<content:encoded><![CDATA[<p>Thanks Jon &#8212; I just updated the post to reflect your method.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jon Williams</title>
		<link>http://stereointeractive.com/blog/2009/02/17/recursively-delete-svn-directories/comment-page-1/#comment-371</link>
		<dc:creator>Jon Williams</dc:creator>
		<pubDate>Tue, 17 Feb 2009 22:15:12 +0000</pubDate>
		<guid isPermaLink="false">http://stereointeractive.com/blog/?p=164#comment-371</guid>
		<description>You should use:

&lt;pre lang=&quot;bash&quot;&gt;find . -type d -name .svn -exec rm {} \;&lt;/pre&gt;

instead. This approach doesn&#039;t escape spaces in file names which would cause problems if you had a directory with a space in it.</description>
		<content:encoded><![CDATA[<p>You should use:</p>

<div class="wp_syntax"><div class="code"><pre class="bash"><span class="kw2">find</span> . <span class="re5">-type</span> d <span class="re5">-name</span> .svn <span class="re5">-exec</span> <span class="kw2">rm</span> <span class="br0">&#123;</span><span class="br0">&#125;</span> \;</pre></div></div>

<p>instead. This approach doesn&#8217;t escape spaces in file names which would cause problems if you had a directory with a space in it.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

