<?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: Using tar to Snapshot a Subversion Working Directory</title>
	<atom:link href="http://www.codedread.com/blog/archives/2007/04/26/using-tar-to-snapshot-a-subversion-working-directory/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.codedread.com/blog/archives/2007/04/26/using-tar-to-snapshot-a-subversion-working-directory/</link>
	<description></description>
	<lastBuildDate>Tue, 17 Jan 2012 21:56:44 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: JD</title>
		<link>http://www.codedread.com/blog/archives/2007/04/26/using-tar-to-snapshot-a-subversion-working-directory/comment-page-1/#comment-706</link>
		<dc:creator>JD</dc:creator>
		<pubDate>Thu, 15 Nov 2007 19:58:56 +0000</pubDate>
		<guid isPermaLink="false">http://blog.codedread.com/archives/2007/04/26/using-tar-to-snapshot-a-subversion-working-directory/#comment-706</guid>
		<description>Sorry, thought that was for a &quot;one time&quot; removal.</description>
		<content:encoded><![CDATA[<p>Sorry, thought that was for a &#8220;one time&#8221; removal.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: JD</title>
		<link>http://www.codedread.com/blog/archives/2007/04/26/using-tar-to-snapshot-a-subversion-working-directory/comment-page-1/#comment-705</link>
		<dc:creator>JD</dc:creator>
		<pubDate>Thu, 15 Nov 2007 19:56:47 +0000</pubDate>
		<guid isPermaLink="false">http://blog.codedread.com/archives/2007/04/26/using-tar-to-snapshot-a-subversion-working-directory/#comment-705</guid>
		<description>Kill the SVN directories prior to tar.

#!/bin/bash
cd YOURDIR; for i in `find . -name .svn`; do rm -rf $i; done; cd ..
tar -czf yourdir.tar.gz YOURDIR</description>
		<content:encoded><![CDATA[<p>Kill the SVN directories prior to tar.</p>
<p>#!/bin/bash<br />
cd YOURDIR; for i in `find . -name .svn`; do rm -rf $i; done; cd ..<br />
tar -czf yourdir.tar.gz YOURDIR</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jeff Schiller</title>
		<link>http://www.codedread.com/blog/archives/2007/04/26/using-tar-to-snapshot-a-subversion-working-directory/comment-page-1/#comment-704</link>
		<dc:creator>Jeff Schiller</dc:creator>
		<pubDate>Sat, 18 Aug 2007 04:33:37 +0000</pubDate>
		<guid isPermaLink="false">http://blog.codedread.com/archives/2007/04/26/using-tar-to-snapshot-a-subversion-working-directory/#comment-704</guid>
		<description>Wow Mike, thanks for the tip - I&#039;ll have to remember that next time I need to do a backup...</description>
		<content:encoded><![CDATA[<p>Wow Mike, thanks for the tip &#8211; I&#8217;ll have to remember that next time I need to do a backup&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mike Gent</title>
		<link>http://www.codedread.com/blog/archives/2007/04/26/using-tar-to-snapshot-a-subversion-working-directory/comment-page-1/#comment-703</link>
		<dc:creator>Mike Gent</dc:creator>
		<pubDate>Fri, 17 Aug 2007 19:45:09 +0000</pubDate>
		<guid isPermaLink="false">http://blog.codedread.com/archives/2007/04/26/using-tar-to-snapshot-a-subversion-working-directory/#comment-703</guid>
		<description>An even better solution is to use the same exclude file no matter what the repos layout is. Just include the directory with and without a trailing slash.

svnexclude.txt:
&lt;code&gt;
*/.svn
*/.svn/*
&lt;/code&gt;

Command:
&lt;code&gt;
tar czvfX archive.tgz svnexclude.txt dir1/* dir2/*
&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>An even better solution is to use the same exclude file no matter what the repos layout is. Just include the directory with and without a trailing slash.</p>
<p>svnexclude.txt:<br />
<code><br />
*/.svn<br />
*/.svn/*<br />
</code></p>
<p>Command:<br />
<code><br />
tar czvfX archive.tgz svnexclude.txt dir1/* dir2/*<br />
</code></p>
]]></content:encoded>
	</item>
</channel>
</rss>

