<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress/2.0.7" -->
<rss version="2.0" 
	xmlns:content="http://purl.org/rss/1.0/modules/content/">
<channel>
	<title>Comments on: Subversion: move, migrate, split</title>
	<link>http://alephzarro.com/blog/2007/01/13/subversion-move-migrate-split/</link>
	<description>Viktor Zigo</description>
	<pubDate>Thu, 20 Nov 2008 20:34:57 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.0.7</generator>

	<item>
		<title>by: Jiang Xin</title>
		<link>http://alephzarro.com/blog/2007/01/13/subversion-move-migrate-split/#comment-44450</link>
		<pubDate>Thu, 13 Nov 2008 03:14:12 +0000</pubDate>
		<guid>http://alephzarro.com/blog/2007/01/13/subversion-move-migrate-split/#comment-44450</guid>
					<description>path projects withoud a slash at the end should also be replaced. like this:
    Node-copyfrom-path: projects

I use this command:
     sed -e "s@^\(Node-path: \&#124;Node-copyfrom-path: \)projects/\?@\1@" proj1-fixed.dump</description>
		<content:encoded><![CDATA[<p>path projects withoud a slash at the end should also be replaced. like this:<br />
    Node-copyfrom-path: projects</p>
<p>I use this command:<br />
     sed -e &#8220;s@^\(Node-path: \|Node-copyfrom-path: \)projects/\?@\1@&#8221; proj1-fixed.dump
</p>
]]></content:encoded>
				</item>
	<item>
		<title>by: Jonathan Stanton</title>
		<link>http://alephzarro.com/blog/2007/01/13/subversion-move-migrate-split/#comment-30426</link>
		<pubDate>Tue, 24 Jun 2008 09:54:30 +0000</pubDate>
		<guid>http://alephzarro.com/blog/2007/01/13/subversion-move-migrate-split/#comment-30426</guid>
					<description>Instead of 
sed -e "s/Node-path: projects\//Node path: /"  proj1-fixed.dump 
use
sed -e "s/-path: projects\//-path: /"  proj1-fixed.dump</description>
		<content:encoded><![CDATA[<p>Instead of<br />
sed -e &#8220;s/Node-path: projects\//Node path: /&#8221;  proj1-fixed.dump<br />
use<br />
sed -e &#8220;s/-path: projects\//-path: /&#8221;  proj1-fixed.dump
</p>
]]></content:encoded>
				</item>
	<item>
		<title>by: Jakob Kruse</title>
		<link>http://alephzarro.com/blog/2007/01/13/subversion-move-migrate-split/#comment-19719</link>
		<pubDate>Tue, 25 Mar 2008 12:03:08 +0000</pubDate>
		<guid>http://alephzarro.com/blog/2007/01/13/subversion-move-migrate-split/#comment-19719</guid>
					<description>Very nice description. Worked like a charm!

Thank you!</description>
		<content:encoded><![CDATA[<p>Very nice description. Worked like a charm!</p>
<p>Thank you!
</p>
]]></content:encoded>
				</item>
	<item>
		<title>by: viz</title>
		<link>http://alephzarro.com/blog/2007/01/13/subversion-move-migrate-split/#comment-18986</link>
		<pubDate>Sat, 15 Mar 2008 22:28:20 +0000</pubDate>
		<guid>http://alephzarro.com/blog/2007/01/13/subversion-move-migrate-split/#comment-18986</guid>
					<description>If you do a simple migration of Repository, just do the three steps:

on SourceServer:
&lt;code&gt;  svnadmin dump PATH_TO_REPOS_1 &#124; gzip &gt; dumpfile.gz&lt;/code&gt;

on DestinationServer:
&lt;code&gt;  gunzip -c dumpfile.gz &#124; svnadmin load --force-uuid PATH_TO_REPOS_2&lt;/code&gt;

on Client:
&lt;code&gt;  svn switch --relocate ORIGINAL_ROOT NEW_ROOT .&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>If you do a simple migration of Repository, just do the three steps:</p>
<p>on SourceServer:<br />
<code>  svnadmin dump PATH_TO_REPOS_1 | gzip > dumpfile.gz</code></p>
<p>on DestinationServer:<br />
<code>  gunzip -c dumpfile.gz | svnadmin load --force-uuid PATH_TO_REPOS_2</code></p>
<p>on Client:<br />
<code>  svn switch --relocate ORIGINAL_ROOT NEW_ROOT .</code>
</p>
]]></content:encoded>
				</item>
	<item>
		<title>by: Caleb Cranford</title>
		<link>http://alephzarro.com/blog/2007/01/13/subversion-move-migrate-split/#comment-9138</link>
		<pubDate>Fri, 28 Sep 2007 00:49:02 +0000</pubDate>
		<guid>http://alephzarro.com/blog/2007/01/13/subversion-move-migrate-split/#comment-9138</guid>
					<description>This post helped me with binary files in the dump:
http://blog.fredrikbostrom.net/?p=40</description>
		<content:encoded><![CDATA[<p>This post helped me with binary files in the dump:<br />
<a href="http://blog.fredrikbostrom.net/?p=40" rel="nofollow">http://blog.fredrikbostrom.net/?p=40</a>
</p>
]]></content:encoded>
				</item>
	<item>
		<title>by: Thiago Lima</title>
		<link>http://alephzarro.com/blog/2007/01/13/subversion-move-migrate-split/#comment-8086</link>
		<pubDate>Tue, 04 Sep 2007 17:43:06 +0000</pubDate>
		<guid>http://alephzarro.com/blog/2007/01/13/subversion-move-migrate-split/#comment-8086</guid>
					<description>It's a very good step-by-step, but I got some problems when trying to fix the paths in my dump. Does this tip works well with binary dumps? Cos' I have some binary files in my repository...

thanks</description>
		<content:encoded><![CDATA[<p>It&#8217;s a very good step-by-step, but I got some problems when trying to fix the paths in my dump. Does this tip works well with binary dumps? Cos&#8217; I have some binary files in my repository&#8230;</p>
<p>thanks
</p>
]]></content:encoded>
				</item>
	<item>
		<title>by: Colin McCormack</title>
		<link>http://alephzarro.com/blog/2007/01/13/subversion-move-migrate-split/#comment-5558</link>
		<pubDate>Sun, 20 May 2007 04:50:55 +0000</pubDate>
		<guid>http://alephzarro.com/blog/2007/01/13/subversion-move-migrate-split/#comment-5558</guid>
					<description>Thanks!  Concise, accurate, to the point, and *very* helpful.</description>
		<content:encoded><![CDATA[<p>Thanks!  Concise, accurate, to the point, and *very* helpful.
</p>
]]></content:encoded>
				</item>
</channel>
</rss>
