<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Pascal's blog &#187; svn</title>
	<atom:link href="http://blog.dreamdevil.com/index.php/tag/svn/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.dreamdevil.com</link>
	<description></description>
	<lastBuildDate>Tue, 02 Feb 2010 13:21:29 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.5</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Migrating a Subversion repository from Windows to Linux</title>
		<link>http://blog.dreamdevil.com/index.php/2008/01/07/migrate_svn_repos_from_windows_to_linux/</link>
		<comments>http://blog.dreamdevil.com/index.php/2008/01/07/migrate_svn_repos_from_windows_to_linux/#comments</comments>
		<pubDate>Mon, 07 Jan 2008 22:00:39 +0000</pubDate>
		<dc:creator>Pascal</dc:creator>
				<category><![CDATA[How-To]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[svn]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://192.168.10.130/?p=5</guid>
		<description><![CDATA[Migrating subversion from a Windows installation to a Linux installation is not just copying the repository structure and files. But it is still quite easy. Here are the steps:

Extract the repository data from Windows repository and store it into an OS independant format using the dump command:
svnadmin dump [repo location] &#62; [dump file]
ex: svnadmin dump [...]]]></description>
			<content:encoded><![CDATA[<p align="left">Migrating subversion from a Windows installation to a Linux installation is not just copying the repository structure and files. But it is still quite easy. Here are the steps:</p>
<ol>
<li>Extract the repository data from Windows repository and store it into an OS independant format using the dump command:
<pre><code>svnadmin dump [repo location] &gt; [dump file]
ex: svnadmin dump /svn/MyProject &gt; c:\temp\MyProject.dmp</code></pre>
</li>
<li>Upload the exported file on the Linux system.</li>
<li>Create a Subversion repository:
<pre><code>svnadmin create [repo location]</code></pre>
</li>
<li>Adjust security settings on the new repository directory (if necessary).</li>
<li>Restore the dump file into the new repository:
<pre><code>svnadmin load [repo location] &lt; [dump file]</code></pre>
</li>
</ol>
<p align="left">Here is an example of loading a dumped file into a Subversion installation for accessing through Apache2 and Ubuntu Server 7.04:</p>
<ol>
<li><strong>create repository:</strong>
<pre><code>sudo svnadmin create /var/svn/MyProject</code></pre>
</li>
<li><strong>change owner:</strong>
<pre><code>sudo chown -R www-data:www-data /var/svn/MyProject</code></pre>
</li>
<li><strong>change security:</strong>
<pre><code>sudo chmod -R g+ws /var/svn/MyProject</code></pre>
</li>
<li><strong>Load dump file:</strong>
<pre><code>sudo svnadmin load /var/svn/MyProject &lt; ~/MyProject.dmp</code></pre>
</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://blog.dreamdevil.com/index.php/2008/01/07/migrate_svn_repos_from_windows_to_linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
