<?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: Removing .svn folders from a working copy with TortoiseSVN</title>
	<atom:link href="http://thinkinging.com/2008/09/23/removing-svn-folders-from-a-working-copy-with-tortoisesvn/feed/" rel="self" type="application/rss+xml" />
	<link>http://thinkinging.com/2008/09/23/removing-svn-folders-from-a-working-copy-with-tortoisesvn/</link>
	<description>an unfiltered stream of data flow consciousness</description>
	<lastBuildDate>Mon,  1 Mar 2010 12:19:29 -0600</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Jim Kring</title>
		<link>http://thinkinging.com/2008/09/23/removing-svn-folders-from-a-working-copy-with-tortoisesvn/comment-page-1/#comment-25337</link>
		<dc:creator>Jim Kring</dc:creator>
		<pubDate>Wed, 19 Nov 2008 22:18:11 +0000</pubDate>
		<guid isPermaLink="false">http://thinkinging.com/?p=559#comment-25337</guid>
		<description>David: Thanks for the tip.</description>
		<content:encoded><![CDATA[<p>David: Thanks for the tip.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: David Fackler</title>
		<link>http://thinkinging.com/2008/09/23/removing-svn-folders-from-a-working-copy-with-tortoisesvn/comment-page-1/#comment-25336</link>
		<dc:creator>David Fackler</dc:creator>
		<pubDate>Wed, 19 Nov 2008 20:06:35 +0000</pubDate>
		<guid isPermaLink="false">http://thinkinging.com/?p=559#comment-25336</guid>
		<description>Variation for the command-line happy.
Aim carefully.

Using GNU or Cygwin tools:

find . -type d -name &#039;.svn&#039; -exec rm -rf {} \;

Using Windows native tools:

for /f &quot;usebackq&quot; %x in (`dir /s/b/ad .svn`) do rmdir /s/q %x</description>
		<content:encoded><![CDATA[<p>Variation for the command-line happy.<br />
Aim carefully.</p>
<p>Using GNU or Cygwin tools:</p>
<p>find . -type d -name &#8216;.svn&#8217; -exec rm -rf {} \;</p>
<p>Using Windows native tools:</p>
<p>for /f &#8220;usebackq&#8221; %x in (`dir /s/b/ad .svn`) do rmdir /s/q %x</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jim Kring</title>
		<link>http://thinkinging.com/2008/09/23/removing-svn-folders-from-a-working-copy-with-tortoisesvn/comment-page-1/#comment-25257</link>
		<dc:creator>Jim Kring</dc:creator>
		<pubDate>Thu, 25 Sep 2008 06:10:40 +0000</pubDate>
		<guid isPermaLink="false">http://thinkinging.com/?p=559#comment-25257</guid>
		<description>Josh: Glad that it helped you.

Yonatan: Thanks for the info.  This sounds like a great reason for everyone using 1.4.x to upgrade!</description>
		<content:encoded><![CDATA[<p>Josh: Glad that it helped you.</p>
<p>Yonatan: Thanks for the info.  This sounds like a great reason for everyone using 1.4.x to upgrade!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Yonatan Tidhar</title>
		<link>http://thinkinging.com/2008/09/23/removing-svn-folders-from-a-working-copy-with-tortoisesvn/comment-page-1/#comment-25256</link>
		<dc:creator>Yonatan Tidhar</dc:creator>
		<pubDate>Thu, 25 Sep 2008 05:43:05 +0000</pubDate>
		<guid isPermaLink="false">http://thinkinging.com/?p=559#comment-25256</guid>
		<description>Hi Jim 
Thanx to you for shring us your experiance.
one comment - I check it iwith Tortiose 1.4.8 and it didnt work. 1.5.3 work as you described</description>
		<content:encoded><![CDATA[<p>Hi Jim<br />
Thanx to you for shring us your experiance.<br />
one comment &#8211; I check it iwith Tortiose 1.4.8 and it didnt work. 1.5.3 work as you described</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Josh Kendall</title>
		<link>http://thinkinging.com/2008/09/23/removing-svn-folders-from-a-working-copy-with-tortoisesvn/comment-page-1/#comment-25254</link>
		<dc:creator>Josh Kendall</dc:creator>
		<pubDate>Tue, 23 Sep 2008 19:02:49 +0000</pubDate>
		<guid isPermaLink="false">http://thinkinging.com/?p=559#comment-25254</guid>
		<description>This is awesome. This just saved me a huge headache. Thanks!</description>
		<content:encoded><![CDATA[<p>This is awesome. This just saved me a huge headache. Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jim Kring</title>
		<link>http://thinkinging.com/2008/09/23/removing-svn-folders-from-a-working-copy-with-tortoisesvn/comment-page-1/#comment-25253</link>
		<dc:creator>Jim Kring</dc:creator>
		<pubDate>Tue, 23 Sep 2008 17:07:01 +0000</pubDate>
		<guid isPermaLink="false">http://thinkinging.com/?p=559#comment-25253</guid>
		<description>Hi Sam, Thanks for the tip.  Actually, I typically use the explorer search technique, too.  One of the problems with this approach, however, is that &quot;.svn&quot; folders are &quot;hidden&quot; folders and the explorer search does not include hidden files or folders, by default -- you have to make sure to reconfigure the explorer search to include them.</description>
		<content:encoded><![CDATA[<p>Hi Sam, Thanks for the tip.  Actually, I typically use the explorer search technique, too.  One of the problems with this approach, however, is that &#8220;.svn&#8221; folders are &#8220;hidden&#8221; folders and the explorer search does not include hidden files or folders, by default &#8212; you have to make sure to reconfigure the explorer search to include them.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sam</title>
		<link>http://thinkinging.com/2008/09/23/removing-svn-folders-from-a-working-copy-with-tortoisesvn/comment-page-1/#comment-25252</link>
		<dc:creator>Sam</dc:creator>
		<pubDate>Tue, 23 Sep 2008 16:47:41 +0000</pubDate>
		<guid isPermaLink="false">http://thinkinging.com/?p=559#comment-25252</guid>
		<description>Hi Jim,  I just search for &quot;svn&quot; in the explorer and then only delete the &quot;svn folders&quot;.</description>
		<content:encoded><![CDATA[<p>Hi Jim,  I just search for &#8220;svn&#8221; in the explorer and then only delete the &#8220;svn folders&#8221;.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
