<?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: Remote Backup Of A Subversion (svn) Repository</title>
	<atom:link href="http://moelhave.dk/2006/07/remote-mirroring-a-subversion-svn-repository/feed/" rel="self" type="application/rss+xml" />
	<link>http://moelhave.dk/2006/07/remote-mirroring-a-subversion-svn-repository/</link>
	<description></description>
	<lastBuildDate>Mon, 19 Jul 2010 13:52:02 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>By: Richard Bronosky</title>
		<link>http://moelhave.dk/2006/07/remote-mirroring-a-subversion-svn-repository/comment-page-1/#comment-351509</link>
		<dc:creator>Richard Bronosky</dc:creator>
		<pubDate>Tue, 02 Jun 2009 13:42:00 +0000</pubDate>
		<guid isPermaLink="false">http://moelhave.dk/2006/07/remote-mirroring-a-subversion-svn-repository/#comment-351509</guid>
		<description>I stumbled across another approach while trying to implement yours.

~$ svnsync help initialize
initialize (init): usage: svnsync initialize DEST_URL SOURCE_URL

Initialize a destination repository for synchronization from
another repository.

The destination URL must point to the root of a repository with
no committed revisions.  The destination repository must allow
revision property changes.

If the source URL is not the root of a repository, only the
specified part of the repository will be synchronized.

You should not commit to, or make revision property changes in,
the destination repository by any method other than &#039;svnsync&#039;.
In other words, the destination repository should be a read-only
mirror of the source repository.

Valid options:
  --non-interactive        : do no interactive prompting
  --no-auth-cache          : do not cache authentication tokens
  --username ARG           : specify a username ARG (deprecated;
                             see --source-username and --sync-username)
  --password ARG           : specify a password ARG (deprecated;
                             see --source-password and --sync-password)
  --trust-server-cert      : accept unknown SSL server certificates without
                             prompting (but only with &#039;--non-interactive&#039;)
  --source-username ARG    : connect to source repository with username ARG
  --source-password ARG    : connect to source repository with password ARG
  --sync-username ARG      : connect to sync repository with username ARG
  --sync-password ARG      : connect to sync repository with password ARG
  --config-dir ARG         : read user configuration files from directory ARG
  -q [--quiet]             : print as little as possible

~$ rpm -q --whatprovides $(which svnsync)
subversion-1.6.2-1.el5.rf</description>
		<content:encoded><![CDATA[<p>I stumbled across another approach while trying to implement yours.</p>
<p>~$ svnsync help initialize<br />
initialize (init): usage: svnsync initialize DEST_URL SOURCE_URL</p>
<p>Initialize a destination repository for synchronization from<br />
another repository.</p>
<p>The destination URL must point to the root of a repository with<br />
no committed revisions.  The destination repository must allow<br />
revision property changes.</p>
<p>If the source URL is not the root of a repository, only the<br />
specified part of the repository will be synchronized.</p>
<p>You should not commit to, or make revision property changes in,<br />
the destination repository by any method other than &#8216;svnsync&#8217;.<br />
In other words, the destination repository should be a read-only<br />
mirror of the source repository.</p>
<p>Valid options:<br />
  &#8211;non-interactive        : do no interactive prompting<br />
  &#8211;no-auth-cache          : do not cache authentication tokens<br />
  &#8211;username ARG           : specify a username ARG (deprecated;<br />
                             see &#8211;source-username and &#8211;sync-username)<br />
  &#8211;password ARG           : specify a password ARG (deprecated;<br />
                             see &#8211;source-password and &#8211;sync-password)<br />
  &#8211;trust-server-cert      : accept unknown SSL server certificates without<br />
                             prompting (but only with &#8216;&#8211;non-interactive&#8217;)<br />
  &#8211;source-username ARG    : connect to source repository with username ARG<br />
  &#8211;source-password ARG    : connect to source repository with password ARG<br />
  &#8211;sync-username ARG      : connect to sync repository with username ARG<br />
  &#8211;sync-password ARG      : connect to sync repository with password ARG<br />
  &#8211;config-dir ARG         : read user configuration files from directory ARG<br />
  -q [--quiet]             : print as little as possible</p>
<p>~$ rpm -q &#8211;whatprovides $(which svnsync)<br />
subversion-1.6.2-1.el5.rf</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Thomas</title>
		<link>http://moelhave.dk/2006/07/remote-mirroring-a-subversion-svn-repository/comment-page-1/#comment-319631</link>
		<dc:creator>Thomas</dc:creator>
		<pubDate>Sat, 04 Oct 2008 11:30:58 +0000</pubDate>
		<guid isPermaLink="false">http://moelhave.dk/2006/07/remote-mirroring-a-subversion-svn-repository/#comment-319631</guid>
		<description>That is a neat solution, sounds more elegant than my approach :)</description>
		<content:encoded><![CDATA[<p>That is a neat solution, sounds more elegant than my approach :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jonas</title>
		<link>http://moelhave.dk/2006/07/remote-mirroring-a-subversion-svn-repository/comment-page-1/#comment-319600</link>
		<dc:creator>Jonas</dc:creator>
		<pubDate>Fri, 03 Oct 2008 21:27:43 +0000</pubDate>
		<guid isPermaLink="false">http://moelhave.dk/2006/07/remote-mirroring-a-subversion-svn-repository/#comment-319600</guid>
		<description>I had exactly the same problem and ended up writing a small command line tool on top of the Subversion API that can dump a repository by accessing it via WebDAV or the svn:// protocol.
Maybe it will be useful for others, too: http://saubue.boolsoft.org/projects/rsvndump</description>
		<content:encoded><![CDATA[<p>I had exactly the same problem and ended up writing a small command line tool on top of the Subversion API that can dump a repository by accessing it via WebDAV or the svn:// protocol.<br />
Maybe it will be useful for others, too: <a href="http://saubue.boolsoft.org/projects/rsvndump" rel="nofollow" onclick="pageTracker._trackPageview('/outgoing/saubue.boolsoft.org/projects/rsvndump?referer=');">http://saubue.boolsoft.org/projects/rsvndump</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Saverio</title>
		<link>http://moelhave.dk/2006/07/remote-mirroring-a-subversion-svn-repository/comment-page-1/#comment-211771</link>
		<dc:creator>Saverio</dc:creator>
		<pubDate>Sat, 02 Feb 2008 13:45:48 +0000</pubDate>
		<guid isPermaLink="false">http://moelhave.dk/2006/07/remote-mirroring-a-subversion-svn-repository/#comment-211771</guid>
		<description>Many thanks!
It saved me from a very bugging situation which blocked my repository :-)</description>
		<content:encoded><![CDATA[<p>Many thanks!<br />
It saved me from a very bugging situation which blocked my repository :-)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: How-to Backup / Mirror a public SVN repository at Coolkevmen</title>
		<link>http://moelhave.dk/2006/07/remote-mirroring-a-subversion-svn-repository/comment-page-1/#comment-79372</link>
		<dc:creator>How-to Backup / Mirror a public SVN repository at Coolkevmen</dc:creator>
		<pubDate>Sun, 22 Apr 2007 20:46:38 +0000</pubDate>
		<guid isPermaLink="false">http://moelhave.dk/2006/07/remote-mirroring-a-subversion-svn-repository/#comment-79372</guid>
		<description>[...] a vanilla SVN dump out of your SVK local mirror, as suggest by Thomas MÃ¸lhave in his &#8220;Remote Backup Of A Subversion (svn) Repository&#8221; blog post, use svnadmin: svnadmin dump -r2:HEAD ~/.svk/local &gt; [...]</description>
		<content:encoded><![CDATA[<p>[...] a vanilla SVN dump out of your SVK local mirror, as suggest by Thomas MÃ¸lhave in his &#8220;Remote Backup Of A Subversion (svn) Repository&#8221; blog post, use svnadmin: svnadmin dump -r2:HEAD ~/.svk/local &gt; [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
