<?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"
	>
<channel>
	<title>Comments on: Bazaar 1.0 released</title>
	<atom:link href="http://muffinresearch.co.uk/archives/2007/12/17/bazaar-10-released/feed/" rel="self" type="application/rss+xml" />
	<link>http://muffinresearch.co.uk/archives/2007/12/17/bazaar-10-released/</link>
	<description>the personal blog of Stuart Colville covering modern web development techniques and best practices</description>
	<pubDate>Mon, 13 Oct 2008 13:58:37 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
		<item>
		<title>By: Matt Wilcox</title>
		<link>http://muffinresearch.co.uk/archives/2007/12/17/bazaar-10-released/#comment-63804</link>
		<dc:creator>Matt Wilcox</dc:creator>
		<pubDate>Tue, 18 Dec 2007 11:11:32 +0000</pubDate>
		<guid isPermaLink="false">http://muffinresearch.co.uk/archives/2007/12/17/bazaar-10-released/#comment-63804</guid>
		<description>Ah, brilliant! A little bit beta at the moment, but this is exactly the sort of tool that I would need.

Thanks Stuart, I'll be keeping my eye on this.</description>
		<content:encoded><![CDATA[<p>Ah, brilliant! A little bit beta at the moment, but this is exactly the sort of tool that I would need.</p>
<p>Thanks Stuart, I&#8217;ll be keeping my eye on this.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Stuart Colville</title>
		<link>http://muffinresearch.co.uk/archives/2007/12/17/bazaar-10-released/#comment-63802</link>
		<dc:creator>Stuart Colville</dc:creator>
		<pubDate>Tue, 18 Dec 2007 08:55:57 +0000</pubDate>
		<guid isPermaLink="false">http://muffinresearch.co.uk/archives/2007/12/17/bazaar-10-released/#comment-63802</guid>
		<description>@Matt: That's fair enough however there's also &lt;a href="http://bazaar-vcs.org/TortoiseBzr" rel="nofollow"&gt;TortoiseBzr&lt;/a&gt;</description>
		<content:encoded><![CDATA[<p>@Matt: That&#8217;s fair enough however there&#8217;s also <a href="http://bazaar-vcs.org/TortoiseBzr" rel="nofollow">TortoiseBzr</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Matt Wilcox</title>
		<link>http://muffinresearch.co.uk/archives/2007/12/17/bazaar-10-released/#comment-63796</link>
		<dc:creator>Matt Wilcox</dc:creator>
		<pubDate>Mon, 17 Dec 2007 16:30:38 +0000</pubDate>
		<guid isPermaLink="false">http://muffinresearch.co.uk/archives/2007/12/17/bazaar-10-released/#comment-63796</guid>
		<description>Is there a GUI. That is my number one reason for using SVN - I can use Tortoise. I'm a web designer, not a programmer - I want GUI, not CLI.</description>
		<content:encoded><![CDATA[<p>Is there a GUI. That is my number one reason for using SVN - I can use Tortoise. I&#8217;m a web designer, not a programmer - I want GUI, not CLI.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Stuart Colville</title>
		<link>http://muffinresearch.co.uk/archives/2007/12/17/bazaar-10-released/#comment-63795</link>
		<dc:creator>Stuart Colville</dc:creator>
		<pubDate>Mon, 17 Dec 2007 12:06:03 +0000</pubDate>
		<guid isPermaLink="false">http://muffinresearch.co.uk/archives/2007/12/17/bazaar-10-released/#comment-63795</guid>
		<description>@sil: For me the main points are:

Superior branching and merging - De-centralisation means that branching and merging have to be really first-clas. If say you have some code I will branch it, hack on it and then make it available for you to merge. If merging wasn't capable then the whole thing would be capable. Also not needing the central server makes the whole process much more straight-forward especially as you wouldn't need to give me commit rights on your server for example.

Renaming is not just an alias for remove and add. Renames are tracked so that subsequent merges involving files that have been renamed are seamless. As I understand it this functionality will be added to SVN in 1.5

Using it anywhere is easy as it's all just files. I can create a repo really easily and shove it up on a webserver to make that branch available to anyone. I can install bazaar on a webserver and version /etc for example to track configurations.

The flexibility it gives means you can pretty much adapt it to any situation/dev environment which provides a neat way of side-stepping environment limitations.

Lastly as it's written in Python it's so readily pluggable. Though SVN's maturity means that the language bindings do give similar levels of extensibility and beyond.

John Arbash Meinel has written a nice comparison that certainly comes across as objective even though he's heavily involved in working with Bazaar http://jam-bazaar.blogspot.com/2007/10/bazaar-vs-subversion.html</description>
		<content:encoded><![CDATA[<p>@sil: For me the main points are:</p>
<p>Superior branching and merging - De-centralisation means that branching and merging have to be really first-clas. If say you have some code I will branch it, hack on it and then make it available for you to merge. If merging wasn&#8217;t capable then the whole thing would be capable. Also not needing the central server makes the whole process much more straight-forward especially as you wouldn&#8217;t need to give me commit rights on your server for example.</p>
<p>Renaming is not just an alias for remove and add. Renames are tracked so that subsequent merges involving files that have been renamed are seamless. As I understand it this functionality will be added to SVN in 1.5</p>
<p>Using it anywhere is easy as it&#8217;s all just files. I can create a repo really easily and shove it up on a webserver to make that branch available to anyone. I can install bazaar on a webserver and version /etc for example to track configurations.</p>
<p>The flexibility it gives means you can pretty much adapt it to any situation/dev environment which provides a neat way of side-stepping environment limitations.</p>
<p>Lastly as it&#8217;s written in Python it&#8217;s so readily pluggable. Though SVN&#8217;s maturity means that the language bindings do give similar levels of extensibility and beyond.</p>
<p>John Arbash Meinel has written a nice comparison that certainly comes across as objective even though he&#8217;s heavily involved in working with Bazaar <a href="http://jam-bazaar.blogspot.com/2007/10/bazaar-vs-subversion.html" rel="nofollow">http://jam-bazaar.blogspot.com/2007/10/bazaar-vs-subversion.html</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Stuart Langridge</title>
		<link>http://muffinresearch.co.uk/archives/2007/12/17/bazaar-10-released/#comment-63794</link>
		<dc:creator>Stuart Langridge</dc:creator>
		<pubDate>Mon, 17 Dec 2007 11:24:16 +0000</pubDate>
		<guid isPermaLink="false">http://muffinresearch.co.uk/archives/2007/12/17/bazaar-10-released/#comment-63794</guid>
		<description>From your perspective, what's the advantage in using bzr rather than svn? People keep saying "it's better", but because I haven't tried it much I haven't formed an opinion; what do you think is better about it? I already have a public svn server, so I don't have to suffer the pain of setting that up.</description>
		<content:encoded><![CDATA[<p>From your perspective, what&#8217;s the advantage in using bzr rather than svn? People keep saying &#8220;it&#8217;s better&#8221;, but because I haven&#8217;t tried it much I haven&#8217;t formed an opinion; what do you think is better about it? I already have a public svn server, so I don&#8217;t have to suffer the pain of setting that up.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
