<?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: Full and incremental dump of a Subversion repository from a Windows BAT file</title>
	<atom:link href="http://johankanngard.net/2008/05/23/full-dump-of-a-subversion-repository-from-a-windows-bat-file/feed/" rel="self" type="application/rss+xml" />
	<link>http://johankanngard.net/2008/05/23/full-dump-of-a-subversion-repository-from-a-windows-bat-file/</link>
	<description>Useful tips for developers</description>
	<lastBuildDate>Tue, 15 Sep 2009 08:08:34 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>By: Johan Känngård</title>
		<link>http://johankanngard.net/2008/05/23/full-dump-of-a-subversion-repository-from-a-windows-bat-file/comment-page-1/#comment-125881</link>
		<dc:creator>Johan Känngård</dc:creator>
		<pubDate>Thu, 10 Sep 2009 07:52:46 +0000</pubDate>
		<guid isPermaLink="false">http://johankanngard.net/2008/05/23/full-dump-of-a-subversion-repository-from-a-windows-bat-file/#comment-125881</guid>
		<description>If you use Alis method, it should be something like:
SET seconds=%TIME:~6.2%</description>
		<content:encoded><![CDATA[<p>If you use Alis method, it should be something like:<br />
SET seconds=%TIME:~6.2%</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jorge</title>
		<link>http://johankanngard.net/2008/05/23/full-dump-of-a-subversion-repository-from-a-windows-bat-file/comment-page-1/#comment-125787</link>
		<dc:creator>Jorge</dc:creator>
		<pubDate>Tue, 08 Sep 2009 17:39:41 +0000</pubDate>
		<guid isPermaLink="false">http://johankanngard.net/2008/05/23/full-dump-of-a-subversion-repository-from-a-windows-bat-file/#comment-125787</guid>
		<description>What about the seconds?  I mean, how can I do if I want to get the seconds too?</description>
		<content:encoded><![CDATA[<p>What about the seconds?  I mean, how can I do if I want to get the seconds too?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ali Yakout</title>
		<link>http://johankanngard.net/2008/05/23/full-dump-of-a-subversion-repository-from-a-windows-bat-file/comment-page-1/#comment-95067</link>
		<dc:creator>Ali Yakout</dc:creator>
		<pubDate>Wed, 15 Oct 2008 17:19:31 +0000</pubDate>
		<guid isPermaLink="false">http://johankanngard.net/2008/05/23/full-dump-of-a-subversion-repository-from-a-windows-bat-file/#comment-95067</guid>
		<description>Nice work, that&#039;s just what I was looking for :)

I use %date% and %time% instead
SET month=%DATE:~4,2%
SET day=%DATE:~7,2%
SET year=%DATE:~-4%
SET hour=%TIME:~0,2%
SET minute=%TIME:~3,2%</description>
		<content:encoded><![CDATA[<p>Nice work, that&#8217;s just what I was looking for :)</p>
<p>I use %date% and %time% instead<br />
SET month=%DATE:~4,2%<br />
SET day=%DATE:~7,2%<br />
SET year=%DATE:~-4%<br />
SET hour=%TIME:~0,2%<br />
SET minute=%TIME:~3,2%</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Johan Känngård</title>
		<link>http://johankanngard.net/2008/05/23/full-dump-of-a-subversion-repository-from-a-windows-bat-file/comment-page-1/#comment-89343</link>
		<dc:creator>Johan Känngård</dc:creator>
		<pubDate>Thu, 31 Jul 2008 07:53:57 +0000</pubDate>
		<guid isPermaLink="false">http://johankanngard.net/2008/05/23/full-dump-of-a-subversion-repository-from-a-windows-bat-file/#comment-89343</guid>
		<description>You can try the svn-backup-dumps in the subversion-tools package. I run it like this to get deltas from a repository for use with &lt;a href=&quot;http://www.rsnapshot.org&quot; rel=&quot;nofollow&quot;&gt;rsnapshot&lt;/a&gt;:
&lt;code&gt;
svn-backup-dumps -z -q --deltas -c 1000 /var/svn_repository .
&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>You can try the svn-backup-dumps in the subversion-tools package. I run it like this to get deltas from a repository for use with <a href="http://www.rsnapshot.org" rel="nofollow">rsnapshot</a>:<br />
<code><br />
svn-backup-dumps -z -q --deltas -c 1000 /var/svn_repository .<br />
</code></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Johan Känngård</title>
		<link>http://johankanngard.net/2008/05/23/full-dump-of-a-subversion-repository-from-a-windows-bat-file/comment-page-1/#comment-84894</link>
		<dc:creator>Johan Känngård</dc:creator>
		<pubDate>Mon, 26 May 2008 08:58:42 +0000</pubDate>
		<guid isPermaLink="false">http://johankanngard.net/2008/05/23/full-dump-of-a-subversion-repository-from-a-windows-bat-file/#comment-84894</guid>
		<description>Im running a Ubuntu installation at home with a Subversion repository but without any relevant data, but your question is interesting. After some searching, i found &lt;a href=&quot;http://www.builderau.com.au/program/linux/soa/Automate-subversion-backups/0,339028299,339281519,00.htm&quot; rel=&quot;nofollow&quot;&gt;this script&lt;/a&gt; that I will try to implement sometime.</description>
		<content:encoded><![CDATA[<p>Im running a Ubuntu installation at home with a Subversion repository but without any relevant data, but your question is interesting. After some searching, i found <a href="http://www.builderau.com.au/program/linux/soa/Automate-subversion-backups/0,339028299,339281519,00.htm" rel="nofollow">this script</a> that I will try to implement sometime.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Stephan H. Wissel</title>
		<link>http://johankanngard.net/2008/05/23/full-dump-of-a-subversion-repository-from-a-windows-bat-file/comment-page-1/#comment-84762</link>
		<dc:creator>Stephan H. Wissel</dc:creator>
		<pubDate>Sat, 24 May 2008 05:34:12 +0000</pubDate>
		<guid isPermaLink="false">http://johankanngard.net/2008/05/23/full-dump-of-a-subversion-repository-from-a-windows-bat-file/#comment-84762</guid>
		<description>Nice tool, gives some piece of mind. Would you have a Linux shell script version too?</description>
		<content:encoded><![CDATA[<p>Nice tool, gives some piece of mind. Would you have a Linux shell script version too?</p>
]]></content:encoded>
	</item>
</channel>
</rss>

