<?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: Bazaar needs to step it up, Look at Mercurial</title>
	<atom:link href="http://www.xxeo.com/archives/2007/06/21/bazaar-needs-to-step-it-up-look-at-mercurial.html/feed" rel="self" type="application/rss+xml" />
	<link>http://www.xxeo.com/archives/2007/06/21/bazaar-needs-to-step-it-up-look-at-mercurial.html</link>
	<description>20 minutes into the future...</description>
	<lastBuildDate>Wed, 10 Feb 2010 21:19:12 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Stu</title>
		<link>http://www.xxeo.com/archives/2007/06/21/bazaar-needs-to-step-it-up-look-at-mercurial.html/comment-page-1#comment-46399</link>
		<dc:creator>Stu</dc:creator>
		<pubDate>Fri, 13 Jul 2007 17:50:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.xxeo.com/archives/2007/06/21/bazaar-needs-to-step-it-up-look-at-mercurial.html#comment-46399</guid>
		<description>&lt;p&gt;Late to the party I know... I chose bzr over mercurial solely for sftp. My hosted domain cant run servers of my choice, and bzr sftp is soo nice!&lt;/p&gt;

&lt;p&gt;I should add these are all personal projects and I have bzr setup so its centralised (ie: bzr checkout) so when I commit it pushes directly to my site (I like this workflow more than decentralised because these are my personal 1 man projects and its just so much easier to be centralised with 1 person).&lt;/p&gt;

&lt;p&gt;not needing a server is a really big win for me.&lt;/p&gt;

&lt;p&gt;I should also add very seldom do I do reverts, and its mostly a really easy means for me to back my source up to a non-local site with the bonus of seeing branches and commit logs and having the versioning as extra sugar on top.&lt;/p&gt;

&lt;p&gt;I never read any docs on bzr, the workflow is the same as all the others (branch/modify/update/commit), and I&#039;ve not run into anything that has required me to read the docs.&lt;/p&gt;

&lt;p&gt;The HG book is certainly a big win.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Late to the party I know&#8230; I chose bzr over mercurial solely for sftp. My hosted domain cant run servers of my choice, and bzr sftp is soo nice!</p>

<p>I should add these are all personal projects and I have bzr setup so its centralised (ie: bzr checkout) so when I commit it pushes directly to my site (I like this workflow more than decentralised because these are my personal 1 man projects and its just so much easier to be centralised with 1 person).</p>

<p>not needing a server is a really big win for me.</p>

<p>I should also add very seldom do I do reverts, and its mostly a really easy means for me to back my source up to a non-local site with the bonus of seeing branches and commit logs and having the versioning as extra sugar on top.</p>

<p>I never read any docs on bzr, the workflow is the same as all the others (branch/modify/update/commit), and I&#8217;ve not run into anything that has required me to read the docs.</p>

<p>The HG book is certainly a big win.</p>]]></content:encoded>
	</item>
	<item>
		<title>By: brendan</title>
		<link>http://www.xxeo.com/archives/2007/06/21/bazaar-needs-to-step-it-up-look-at-mercurial.html/comment-page-1#comment-46087</link>
		<dc:creator>brendan</dc:creator>
		<pubDate>Wed, 11 Jul 2007 15:34:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.xxeo.com/archives/2007/06/21/bazaar-needs-to-step-it-up-look-at-mercurial.html#comment-46087</guid>
		<description>&lt;p&gt;Malcolm, your description of Mercurial renaming is incorrect. A rename is not simulated by &quot;delete&quot; and &quot;add&quot;, it is recorded as a &lt;em&gt;copy&lt;/em&gt; and a delete. This is an important distinction, because it means that Mercurial has the information to do rename merges. And in fact Mercurial handles directory renames quite well in 0.9.4.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Malcolm, your description of Mercurial renaming is incorrect. A rename is not simulated by &#8220;delete&#8221; and &#8220;add&#8221;, it is recorded as a <em>copy</em> and a delete. This is an important distinction, because it means that Mercurial has the information to do rename merges. And in fact Mercurial handles directory renames quite well in 0.9.4.</p>]]></content:encoded>
	</item>
	<item>
		<title>By: Malcolm Sparks</title>
		<link>http://www.xxeo.com/archives/2007/06/21/bazaar-needs-to-step-it-up-look-at-mercurial.html/comment-page-1#comment-44812</link>
		<dc:creator>Malcolm Sparks</dc:creator>
		<pubDate>Tue, 03 Jul 2007 02:20:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.xxeo.com/archives/2007/06/21/bazaar-needs-to-step-it-up-look-at-mercurial.html#comment-44812</guid>
		<description>&lt;p&gt;I evaluated Mercurial and was put off when I realized that it doesn&#039;t do directory renames. When you rename a directory in SCMs like ClearCase, BitKeeper or Bazaar, the system knows that the directory is essentially the same as it always was, only the name has changed. That&#039;s really helpful when you&#039;re merging, perhaps with someone who has also renamed the same directory... Last time I checked (fairly recently), Mercurial treats a directory rename in the same way as Subversion. Basically, it &#039;cheats&#039; by implementing it as a delete and then an add, and claims this workaround will work for most folks most of the time. When you get used to proper directory renames you begin to rely on it. For Java developers, directory renames are very common because of the way Java projects are laid out (in a directory structure that mirrors the package namespaces). So conflicts are much more common and need to be handled properly when merging. That&#039;s basically the only important difference I found between Mercurial and Bazaar. If and when Mercurial catches up in this area, I may switch.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>I evaluated Mercurial and was put off when I realized that it doesn&#8217;t do directory renames. When you rename a directory in SCMs like ClearCase, BitKeeper or Bazaar, the system knows that the directory is essentially the same as it always was, only the name has changed. That&#8217;s really helpful when you&#8217;re merging, perhaps with someone who has also renamed the same directory&#8230; Last time I checked (fairly recently), Mercurial treats a directory rename in the same way as Subversion. Basically, it &#8216;cheats&#8217; by implementing it as a delete and then an add, and claims this workaround will work for most folks most of the time. When you get used to proper directory renames you begin to rely on it. For Java developers, directory renames are very common because of the way Java projects are laid out (in a directory structure that mirrors the package namespaces). So conflicts are much more common and need to be handled properly when merging. That&#8217;s basically the only important difference I found between Mercurial and Bazaar. If and when Mercurial catches up in this area, I may switch.</p>]]></content:encoded>
	</item>
	<item>
		<title>By: Joao</title>
		<link>http://www.xxeo.com/archives/2007/06/21/bazaar-needs-to-step-it-up-look-at-mercurial.html/comment-page-1#comment-43165</link>
		<dc:creator>Joao</dc:creator>
		<pubDate>Fri, 22 Jun 2007 20:56:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.xxeo.com/archives/2007/06/21/bazaar-needs-to-step-it-up-look-at-mercurial.html#comment-43165</guid>
		<description>&lt;p&gt;I think my choice of Bazaar has been made both objectively and subjectively. &lt;/p&gt;

&lt;p&gt;On one hand I wanted to have the Bzr-Svn support which seems a nice have because so many other projects use Subversion, and Bzr-Svn should allow me to work with Subversion as I would with Bazaar itself in some ways. I am not quite sure how well Bzr-Svn works, though, as I only used it experimentally to check out the jQuery JavaScript library source code which is hosted on Google&#039;s subversion servers. Still, I find it easier to adapt myself to other people&#039;s choices for Subversion than to make them switch to a distributed system. :-)&lt;/p&gt;

&lt;p&gt;Also, since Bazaar 0.17 (the recent release), I think it has improved enough for me to use it again. For example, about 2 years ago, I reported on the Bazaar bug tracker that Bazaar lacked a &quot;bzr log --limit 3&quot; command to limit the returned results which I had learned to like when I used Subversion, and now with Bazaar 0.17 they seem to have fixed it.&lt;/p&gt;

&lt;p&gt;Also, in the past I had problems with character encoding in my file names, so I standardized on &quot;ASCII-like&quot; just to be safe from problems, hence now I can use Bazaar or Mercurial with ease, even though it seems that Bazaar has worked a lot to make such encoding conflicts go away... &lt;/p&gt;

&lt;p&gt;I like that Bazaar has better support for renaming of directories and files as well, even though that&#039;s just a nice have in most cases. :-)&lt;/p&gt;

&lt;p&gt;I work with Bazaar on three machines: Server, Linux client, Windows client... And when using Windows, I&#039;ve found that I don&#039;t need a putty authentication client I borrowed from a &quot;Tortoise...&quot; program, as Bazaar prompts for the password on the command line just like it would on Linux, while with Mercurial I had to use that &quot;putty authentication client or something&quot;.&lt;/p&gt;

&lt;p&gt;Also, since I started using Bazaar about a week ago, I&#039;ve already created about 150 revisions with it without any problem.&lt;/p&gt;

&lt;p&gt;Finally, the &quot;bzr revert&quot; command creates temporary files that seem to be ignored by default by &quot;bzr status&quot; and maybe other commands, while with &quot;hg revert --all&quot;, the temporary files needed to be deleted or you needed to add them to the ignore list or something. Lazy as I am, I never added them to the ignore and preferred to run commands to delete them when necessary.&lt;/p&gt;

&lt;p&gt;BTW, I have about a dozen repositories, so it&#039;s not like I want to mess around too much as well. :-)&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>I think my choice of Bazaar has been made both objectively and subjectively. </p>

<p>On one hand I wanted to have the Bzr-Svn support which seems a nice have because so many other projects use Subversion, and Bzr-Svn should allow me to work with Subversion as I would with Bazaar itself in some ways. I am not quite sure how well Bzr-Svn works, though, as I only used it experimentally to check out the jQuery JavaScript library source code which is hosted on Google&#8217;s subversion servers. Still, I find it easier to adapt myself to other people&#8217;s choices for Subversion than to make them switch to a distributed system. <img src='http://www.xxeo.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>

<p>Also, since Bazaar 0.17 (the recent release), I think it has improved enough for me to use it again. For example, about 2 years ago, I reported on the Bazaar bug tracker that Bazaar lacked a &#8220;bzr log &#8211;limit 3&#8243; command to limit the returned results which I had learned to like when I used Subversion, and now with Bazaar 0.17 they seem to have fixed it.</p>

<p>Also, in the past I had problems with character encoding in my file names, so I standardized on &#8220;ASCII-like&#8221; just to be safe from problems, hence now I can use Bazaar or Mercurial with ease, even though it seems that Bazaar has worked a lot to make such encoding conflicts go away&#8230; </p>

<p>I like that Bazaar has better support for renaming of directories and files as well, even though that&#8217;s just a nice have in most cases. <img src='http://www.xxeo.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>

<p>I work with Bazaar on three machines: Server, Linux client, Windows client&#8230; And when using Windows, I&#8217;ve found that I don&#8217;t need a putty authentication client I borrowed from a &#8220;Tortoise&#8230;&#8221; program, as Bazaar prompts for the password on the command line just like it would on Linux, while with Mercurial I had to use that &#8220;putty authentication client or something&#8221;.</p>

<p>Also, since I started using Bazaar about a week ago, I&#8217;ve already created about 150 revisions with it without any problem.</p>

<p>Finally, the &#8220;bzr revert&#8221; command creates temporary files that seem to be ignored by default by &#8220;bzr status&#8221; and maybe other commands, while with &#8220;hg revert &#8211;all&#8221;, the temporary files needed to be deleted or you needed to add them to the ignore list or something. Lazy as I am, I never added them to the ignore and preferred to run commands to delete them when necessary.</p>

<p>BTW, I have about a dozen repositories, so it&#8217;s not like I want to mess around too much as well. <img src='http://www.xxeo.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>]]></content:encoded>
	</item>
	<item>
		<title>By: dru</title>
		<link>http://www.xxeo.com/archives/2007/06/21/bazaar-needs-to-step-it-up-look-at-mercurial.html/comment-page-1#comment-43163</link>
		<dc:creator>dru</dc:creator>
		<pubDate>Fri, 22 Jun 2007 20:33:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.xxeo.com/archives/2007/06/21/bazaar-needs-to-step-it-up-look-at-mercurial.html#comment-43163</guid>
		<description>&lt;p&gt;Joao,&lt;/p&gt;

&lt;p&gt;But why? You don&#039;t really mention why Bzr is better than
Mercurial?&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Joao,</p>

<p>But why? You don&#8217;t really mention why Bzr is better than
Mercurial?</p>]]></content:encoded>
	</item>
	<item>
		<title>By: Joao</title>
		<link>http://www.xxeo.com/archives/2007/06/21/bazaar-needs-to-step-it-up-look-at-mercurial.html/comment-page-1#comment-43162</link>
		<dc:creator>Joao</dc:creator>
		<pubDate>Fri, 22 Jun 2007 20:29:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.xxeo.com/archives/2007/06/21/bazaar-needs-to-step-it-up-look-at-mercurial.html#comment-43162</guid>
		<description>&lt;p&gt;About a week ago I switched back from Mercurial to Bazaar for my projects. I had been using Mercurial for several months to a year, and before that I used a little bit of Bazaar as well. And before Bazaar, I used a little bit of Subversion, Monotone... &lt;/p&gt;

&lt;p&gt;Anyway, Bazaar and Mercurial both work great. Mercurial&#039;s advantages include its super fast algorithms, but I&#039;ve found that with Bazaar 0.17 I can work well enough and not miss the speed of Mercurial.&lt;/p&gt;

&lt;p&gt;BTW, Bazaar has had a constant stream of releases which seems to be more frequent than the ones from Mercurial. The guys working on Bazaar are paid to do so directly I think, while the guys working on Mercurial do so out of will or because some project uses it and has interest in developing it. Hence, Mercurial might be a little more community driven than Bazaar. &lt;/p&gt;

&lt;p&gt;And while the Bazaar folks watch projects like OpenSolaris and Mozilla choose Mercurial, they are working hard to make Bazaar a good alternative to Mercurial in the soon future. In my opinion, Bazaar&#039;s advantages include the sponsorship by Canonical, the team that works on Bazaar seems to be pretty stable as well, working on it since the beginning, and the code base might be a little better than other comparable systems. I list the Bzr-Svn Subversion plugin that Bazaar has, for instance, which seems to integrate nicely with the Bazaar client itself, without requiring multiple binary files as it seems to use the same &quot;bzr&quot; command itself, by working transparently.&lt;/p&gt;

&lt;p&gt;Anyway, I am not an expert on any of them, so take my opinion with a big grain of salt. :-)&lt;/p&gt;

&lt;p&gt;I would switch from Bazaar to Mercurial only if it was necessary.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>About a week ago I switched back from Mercurial to Bazaar for my projects. I had been using Mercurial for several months to a year, and before that I used a little bit of Bazaar as well. And before Bazaar, I used a little bit of Subversion, Monotone&#8230; </p>

<p>Anyway, Bazaar and Mercurial both work great. Mercurial&#8217;s advantages include its super fast algorithms, but I&#8217;ve found that with Bazaar 0.17 I can work well enough and not miss the speed of Mercurial.</p>

<p>BTW, Bazaar has had a constant stream of releases which seems to be more frequent than the ones from Mercurial. The guys working on Bazaar are paid to do so directly I think, while the guys working on Mercurial do so out of will or because some project uses it and has interest in developing it. Hence, Mercurial might be a little more community driven than Bazaar. </p>

<p>And while the Bazaar folks watch projects like OpenSolaris and Mozilla choose Mercurial, they are working hard to make Bazaar a good alternative to Mercurial in the soon future. In my opinion, Bazaar&#8217;s advantages include the sponsorship by Canonical, the team that works on Bazaar seems to be pretty stable as well, working on it since the beginning, and the code base might be a little better than other comparable systems. I list the Bzr-Svn Subversion plugin that Bazaar has, for instance, which seems to integrate nicely with the Bazaar client itself, without requiring multiple binary files as it seems to use the same &#8220;bzr&#8221; command itself, by working transparently.</p>

<p>Anyway, I am not an expert on any of them, so take my opinion with a big grain of salt. <img src='http://www.xxeo.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>

<p>I would switch from Bazaar to Mercurial only if it was necessary.</p>]]></content:encoded>
	</item>
	<item>
		<title>By: Giao Phan</title>
		<link>http://www.xxeo.com/archives/2007/06/21/bazaar-needs-to-step-it-up-look-at-mercurial.html/comment-page-1#comment-43146</link>
		<dc:creator>Giao Phan</dc:creator>
		<pubDate>Fri, 22 Jun 2007 19:07:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.xxeo.com/archives/2007/06/21/bazaar-needs-to-step-it-up-look-at-mercurial.html#comment-43146</guid>
		<description>&lt;p&gt;Ian Clatworthy on the core team has begun a set of blog postings about why some of the reasons you might pick bazaar over hg and git:&lt;/p&gt;

&lt;p&gt;http://ianclatworthy.wordpress.com/&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Ian Clatworthy on the core team has begun a set of blog postings about why some of the reasons you might pick bazaar over hg and git:</p>

<p><a href="http://ianclatworthy.wordpress.com/" rel="nofollow">http://ianclatworthy.wordpress.com/</a></p>]]></content:encoded>
	</item>
	<item>
		<title>By: Noah Tye</title>
		<link>http://www.xxeo.com/archives/2007/06/21/bazaar-needs-to-step-it-up-look-at-mercurial.html/comment-page-1#comment-43117</link>
		<dc:creator>Noah Tye</dc:creator>
		<pubDate>Fri, 22 Jun 2007 16:29:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.xxeo.com/archives/2007/06/21/bazaar-needs-to-step-it-up-look-at-mercurial.html#comment-43117</guid>
		<description>&lt;p&gt;&lt;a href=&quot;http://www.markshuttleworth.com/archives/123&quot; rel=&quot;nofollow&quot;&gt;Mark Shuttleworth says bzr has superior renaming.&lt;/a&gt;  He also &lt;a href=&quot;http://www.markshuttleworth.com/archives/123#comment-107572&quot; rel=&quot;nofollow&quot;&gt;explained to me&lt;/a&gt; why bzr&#039;s renaming works better than hg&#039;s.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p><a href="http://www.markshuttleworth.com/archives/123" rel="nofollow">Mark Shuttleworth says bzr has superior renaming.</a>  He also <a href="http://www.markshuttleworth.com/archives/123#comment-107572" rel="nofollow">explained to me</a> why bzr&#8217;s renaming works better than hg&#8217;s.</p>]]></content:encoded>
	</item>
	<item>
		<title>By: Wilmer Jenkins</title>
		<link>http://www.xxeo.com/archives/2007/06/21/bazaar-needs-to-step-it-up-look-at-mercurial.html/comment-page-1#comment-43113</link>
		<dc:creator>Wilmer Jenkins</dc:creator>
		<pubDate>Fri, 22 Jun 2007 16:27:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.xxeo.com/archives/2007/06/21/bazaar-needs-to-step-it-up-look-at-mercurial.html#comment-43113</guid>
		<description>&lt;p&gt;The vast majority of the effort involved in creating that book was invested by a single individual:  Bryan O&#039;Sullivan.&lt;/p&gt;

&lt;p&gt;The book really helped me get the ball rolling with Mercurial.  I&#039;m very thankful for his hard work.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>The vast majority of the effort involved in creating that book was invested by a single individual:  Bryan O&#8217;Sullivan.</p>

<p>The book really helped me get the ball rolling with Mercurial.  I&#8217;m very thankful for his hard work.</p>]]></content:encoded>
	</item>
	<item>
		<title>By: João Marcus</title>
		<link>http://www.xxeo.com/archives/2007/06/21/bazaar-needs-to-step-it-up-look-at-mercurial.html/comment-page-1#comment-43108</link>
		<dc:creator>João Marcus</dc:creator>
		<pubDate>Fri, 22 Jun 2007 16:00:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.xxeo.com/archives/2007/06/21/bazaar-needs-to-step-it-up-look-at-mercurial.html#comment-43108</guid>
		<description>&lt;p&gt;I was using Bazaar in Windows... until I ran into encoding errors with files with non-ASCII characters in their names. 
I decided to try Mercurial, it worked just fine, so I&#039;ll ditch Bazaar and choose Mercurial from now on.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>I was using Bazaar in Windows&#8230; until I ran into encoding errors with files with non-ASCII characters in their names. 
I decided to try Mercurial, it worked just fine, so I&#8217;ll ditch Bazaar and choose Mercurial from now on.</p>]]></content:encoded>
	</item>
</channel>
</rss>
