<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments on: From RCS to Mercurial</title>
	<atom:link href="http://unmaintainable.wordpress.com/2007/12/08/from-rcs-to-mercurial/feed/" rel="self" type="application/rss+xml" />
	<link>http://unmaintainable.wordpress.com/2007/12/08/from-rcs-to-mercurial/</link>
	<description>Scripting, Software Engineering and Stuff in Between</description>
	<lastBuildDate>Thu, 17 Dec 2009 10:18:45 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Zen of Linux</title>
		<link>http://unmaintainable.wordpress.com/2007/12/08/from-rcs-to-mercurial/#comment-4939</link>
		<dc:creator>Zen of Linux</dc:creator>
		<pubDate>Thu, 19 Feb 2009 16:11:01 +0000</pubDate>
		<guid isPermaLink="false">http://unmaintainable.wordpress.com/2007/12/08/from-rcs-to-mercurial/#comment-4939</guid>
		<description>Hello Matthias,

good to know there is a migration path from RCS to Mercurial. I&#039;ve just done a writeup about how great hg is, but doing so wondered what the future will bring for a few older rcs repositories.

A quick lookup at a major search engine brought me over to your post and gave me this good feeling of &quot;oh yes, we can do a migration any time...&quot; Even the idea of continuing use of trusty rcs for simpler tasks appears future proof when knowing that a switch to hg will always be possible without losing rcs revisions information. Thanks!</description>
		<content:encoded><![CDATA[<p>Hello Matthias,</p>
<p>good to know there is a migration path from RCS to Mercurial. I&#8217;ve just done a writeup about how great hg is, but doing so wondered what the future will bring for a few older rcs repositories.</p>
<p>A quick lookup at a major search engine brought me over to your post and gave me this good feeling of &#8220;oh yes, we can do a migration any time&#8230;&#8221; Even the idea of continuing use of trusty rcs for simpler tasks appears future proof when knowing that a switch to hg will always be possible without losing rcs revisions information. Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mafr</title>
		<link>http://unmaintainable.wordpress.com/2007/12/08/from-rcs-to-mercurial/#comment-4826</link>
		<dc:creator>mafr</dc:creator>
		<pubDate>Fri, 11 Apr 2008 05:03:11 +0000</pubDate>
		<guid isPermaLink="false">http://unmaintainable.wordpress.com/2007/12/08/from-rcs-to-mercurial/#comment-4826</guid>
		<description>Great, thanks a lot for sharing! I still got some RCS repositories left, so I&#039;ll give it a try :)</description>
		<content:encoded><![CDATA[<p>Great, thanks a lot for sharing! I still got some RCS repositories left, so I&#8217;ll give it a try :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: whorfin</title>
		<link>http://unmaintainable.wordpress.com/2007/12/08/from-rcs-to-mercurial/#comment-4825</link>
		<dc:creator>whorfin</dc:creator>
		<pubDate>Thu, 10 Apr 2008 22:27:35 +0000</pubDate>
		<guid isPermaLink="false">http://unmaintainable.wordpress.com/2007/12/08/from-rcs-to-mercurial/#comment-4825</guid>
		<description>Here&#039;s a much easier [and faster] way.  Thanks for this,
it got me started on the path, I&#039;m an old RCS fart.

First, you&#039;ll need to make sure &quot;convert&quot; is active by adding this to your .hgrc
[extensions]
hgext.convert=

Now, to follow your conventions:
mkdir /var/tmp/mercurial
mkdir /var/tmp/mercurial/cvsroot
cvs -d /var/tmp/mercurial/cvsroot init
cd /var/tmp/mercurial/cvsroot
[and do all that jazz making a &quot;script&quot; subdir, copying ,v files, etc]
cd /var/tmp/mercurial
cvs -d :local:/var/tmp/mercurial/cvsroot co script

so now you have &quot;script&quot; as a sibling of cvsroot, run convert:

hg convert script

and now, behold - hg-script will be your new mercurial repository

cd hg-script
hg status
  yep, all there, but need to add
hg add
hg commit

and yer done</description>
		<content:encoded><![CDATA[<p>Here&#8217;s a much easier [and faster] way.  Thanks for this,<br />
it got me started on the path, I&#8217;m an old RCS fart.</p>
<p>First, you&#8217;ll need to make sure &#8220;convert&#8221; is active by adding this to your .hgrc<br />
[extensions]<br />
hgext.convert=</p>
<p>Now, to follow your conventions:<br />
mkdir /var/tmp/mercurial<br />
mkdir /var/tmp/mercurial/cvsroot<br />
cvs -d /var/tmp/mercurial/cvsroot init<br />
cd /var/tmp/mercurial/cvsroot<br />
[and do all that jazz making a "script" subdir, copying ,v files, etc]<br />
cd /var/tmp/mercurial<br />
cvs -d :local:/var/tmp/mercurial/cvsroot co script</p>
<p>so now you have &#8220;script&#8221; as a sibling of cvsroot, run convert:</p>
<p>hg convert script</p>
<p>and now, behold &#8211; hg-script will be your new mercurial repository</p>
<p>cd hg-script<br />
hg status<br />
  yep, all there, but need to add<br />
hg add<br />
hg commit</p>
<p>and yer done</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mafr</title>
		<link>http://unmaintainable.wordpress.com/2007/12/08/from-rcs-to-mercurial/#comment-4728</link>
		<dc:creator>mafr</dc:creator>
		<pubDate>Fri, 07 Mar 2008 06:23:52 +0000</pubDate>
		<guid isPermaLink="false">http://unmaintainable.wordpress.com/2007/12/08/from-rcs-to-mercurial/#comment-4728</guid>
		<description>Great, I&#039;m glad it was useful to someone!

RCS to Mercurial isn&#039;t exactly a very common use case after all :)</description>
		<content:encoded><![CDATA[<p>Great, I&#8217;m glad it was useful to someone!</p>
<p>RCS to Mercurial isn&#8217;t exactly a very common use case after all :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dale</title>
		<link>http://unmaintainable.wordpress.com/2007/12/08/from-rcs-to-mercurial/#comment-4727</link>
		<dc:creator>Dale</dc:creator>
		<pubDate>Fri, 07 Mar 2008 04:09:01 +0000</pubDate>
		<guid isPermaLink="false">http://unmaintainable.wordpress.com/2007/12/08/from-rcs-to-mercurial/#comment-4727</guid>
		<description>Thanks - this is exactly the kind of document I needed.  I&#039;ve converted a few repositories now :)</description>
		<content:encoded><![CDATA[<p>Thanks &#8211; this is exactly the kind of document I needed.  I&#8217;ve converted a few repositories now :)</p>
]]></content:encoded>
	</item>
</channel>
</rss>
