<?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: Browsable bzr repository</title>
	<atom:link href="http://www.kuliniewicz.org/blog/archives/2008/06/26/browsable-bzr-repository/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.kuliniewicz.org/blog/archives/2008/06/26/browsable-bzr-repository/</link>
	<description>After all, it could only cost you your life, and you got that for free.</description>
	<pubDate>Fri, 21 Nov 2008 05:03:08 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.2</generator>
		<item>
		<title>By: Paul Kuliniewicz</title>
		<link>http://www.kuliniewicz.org/blog/archives/2008/06/26/browsable-bzr-repository/#comment-1959</link>
		<dc:creator>Paul Kuliniewicz</dc:creator>
		<pubDate>Fri, 11 Jul 2008 00:46:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.kuliniewicz.org/blog/?p=793#comment-1959</guid>
		<description>It doesn't look like gnomeradio has any kind of IPC interface that would let Music Applet work with it.</description>
		<content:encoded><![CDATA[<p>It doesn&#8217;t look like gnomeradio has any kind of IPC interface that would let Music Applet work with it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: rinsenrepeat</title>
		<link>http://www.kuliniewicz.org/blog/archives/2008/06/26/browsable-bzr-repository/#comment-1958</link>
		<dc:creator>rinsenrepeat</dc:creator>
		<pubDate>Thu, 10 Jul 2008 04:53:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.kuliniewicz.org/blog/?p=793#comment-1958</guid>
		<description>any chance music applet can work with gnomeradio, to change pre-set radio stations and stuff? also display the name of the current station? heheh</description>
		<content:encoded><![CDATA[<p>any chance music applet can work with gnomeradio, to change pre-set radio stations and stuff? also display the name of the current station? heheh</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Paul Kuliniewicz</title>
		<link>http://www.kuliniewicz.org/blog/archives/2008/06/26/browsable-bzr-repository/#comment-1953</link>
		<dc:creator>Paul Kuliniewicz</dc:creator>
		<pubDate>Mon, 30 Jun 2008 02:34:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.kuliniewicz.org/blog/?p=793#comment-1953</guid>
		<description>24 hours and no new problem.  That's a good sign.</description>
		<content:encoded><![CDATA[<p>24 hours and no new problem.  That&#8217;s a good sign.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Paul Kuliniewicz</title>
		<link>http://www.kuliniewicz.org/blog/archives/2008/06/26/browsable-bzr-repository/#comment-1952</link>
		<dc:creator>Paul Kuliniewicz</dc:creator>
		<pubDate>Sun, 29 Jun 2008 02:56:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.kuliniewicz.org/blog/?p=793#comment-1952</guid>
		<description>Aaaaand fixed some other permissions problems that came up for some reason.  I think.</description>
		<content:encoded><![CDATA[<p>Aaaaand fixed some other permissions problems that came up for some reason.  I think.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Paul Kuliniewicz</title>
		<link>http://www.kuliniewicz.org/blog/archives/2008/06/26/browsable-bzr-repository/#comment-1951</link>
		<dc:creator>Paul Kuliniewicz</dc:creator>
		<pubDate>Sat, 28 Jun 2008 14:53:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.kuliniewicz.org/blog/?p=793#comment-1951</guid>
		<description>I think I've fixed the problem where the repository browser would stop working after a while.</description>
		<content:encoded><![CDATA[<p>I think I&#8217;ve fixed the problem where the repository browser would stop working after a while.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Paul Kuliniewicz</title>
		<link>http://www.kuliniewicz.org/blog/archives/2008/06/26/browsable-bzr-repository/#comment-1950</link>
		<dc:creator>Paul Kuliniewicz</dc:creator>
		<pubDate>Sat, 28 Jun 2008 03:30:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.kuliniewicz.org/blog/?p=793#comment-1950</guid>
		<description>bzr is nice for small projects since you don't need to set up a central repository at all, not even locally; it stores all its bookkeeping in a .bzr directory inside the project.  That makes getting started even easier than needing to set up a CVS or Subversion repository somewhere on your computer.  With such a low barrier to entry, there's little excuse for not using revision control, even for fairly trivial things.

Branching is done by copying (possibly with hard links where possible to minimize space used).  bzr will happily fetch external repositories via HTTP, so you can do something like &lt;code&gt;bzr get http://www.kuliniewicz.org/music-applet/bzr/music-applet/&lt;/code&gt;.  Incidentally, that's just a mirror of the "true" repository I have on my laptop.  After making changes, I just rsync it to the server.

Even though bzr supports distributed revision control, I've never really used it for that, so I don't know how well it stacks up against git (which I imagine must be pretty good, given that it's design was driven by the kernel developers' needs).</description>
		<content:encoded><![CDATA[<p>bzr is nice for small projects since you don&#8217;t need to set up a central repository at all, not even locally; it stores all its bookkeeping in a .bzr directory inside the project.  That makes getting started even easier than needing to set up a CVS or Subversion repository somewhere on your computer.  With such a low barrier to entry, there&#8217;s little excuse for not using revision control, even for fairly trivial things.</p>
<p>Branching is done by copying (possibly with hard links where possible to minimize space used).  bzr will happily fetch external repositories via HTTP, so you can do something like <code>bzr get <a href="http://www.kuliniewicz.org/music-applet/bzr/music-applet/" rel="nofollow"></a><a href='http://www.kuliniewicz.org/music-applet/bzr/music-applet/'>http://www.kuliniewicz.org/music-applet/bzr/music-applet/</a></code>.  Incidentally, that&#8217;s just a mirror of the &#8220;true&#8221; repository I have on my laptop.  After making changes, I just rsync it to the server.</p>
<p>Even though bzr supports distributed revision control, I&#8217;ve never really used it for that, so I don&#8217;t know how well it stacks up against git (which I imagine must be pretty good, given that it&#8217;s design was driven by the kernel developers&#8217; needs).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jeff Moser</title>
		<link>http://www.kuliniewicz.org/blog/archives/2008/06/26/browsable-bzr-repository/#comment-1949</link>
		<dc:creator>Jeff Moser</dc:creator>
		<pubDate>Sat, 28 Jun 2008 02:29:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.kuliniewicz.org/blog/?p=793#comment-1949</guid>
		<description>I haven't used either, so I was curious myself. It just seems like the folks that are using more distributed source systems are using git now (trickling down from Linux kernel development) and thus perhaps better tools will come with it.

However, I think that for personal projects it doesn't really matter. I've been using Subversion without problems. Although, I'm moving my only real open source project to CodePlex which has its own system (Based on Team Foundation Server).</description>
		<content:encoded><![CDATA[<p>I haven&#8217;t used either, so I was curious myself. It just seems like the folks that are using more distributed source systems are using git now (trickling down from Linux kernel development) and thus perhaps better tools will come with it.</p>
<p>However, I think that for personal projects it doesn&#8217;t really matter. I&#8217;ve been using Subversion without problems. Although, I&#8217;m moving my only real open source project to CodePlex which has its own system (Based on Team Foundation Server).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Paul Kuliniewicz</title>
		<link>http://www.kuliniewicz.org/blog/archives/2008/06/26/browsable-bzr-repository/#comment-1948</link>
		<dc:creator>Paul Kuliniewicz</dc:creator>
		<pubDate>Fri, 27 Jun 2008 22:35:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.kuliniewicz.org/blog/?p=793#comment-1948</guid>
		<description>fluffy: Work on Wallace has been stalled for a while.  Whenever I finally start on it again, I'll make the repo browsable, but until then, there isn't much point.

Jeff: I haven't really ever looked at git.  What advantages does it have over something like bzr?</description>
		<content:encoded><![CDATA[<p>fluffy: Work on Wallace has been stalled for a while.  Whenever I finally start on it again, I&#8217;ll make the repo browsable, but until then, there isn&#8217;t much point.</p>
<p>Jeff: I haven&#8217;t really ever looked at git.  What advantages does it have over something like bzr?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jeff Moser</title>
		<link>http://www.kuliniewicz.org/blog/archives/2008/06/26/browsable-bzr-repository/#comment-1947</link>
		<dc:creator>Jeff Moser</dc:creator>
		<pubDate>Fri, 27 Jun 2008 11:56:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.kuliniewicz.org/blog/?p=793#comment-1947</guid>
		<description>I'm just curious, would you still use bzr if you were to start from scratch now or would you pick git?</description>
		<content:encoded><![CDATA[<p>I&#8217;m just curious, would you still use bzr if you were to start from scratch now or would you pick git?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: fluffy</title>
		<link>http://www.kuliniewicz.org/blog/archives/2008/06/26/browsable-bzr-repository/#comment-1946</link>
		<dc:creator>fluffy</dc:creator>
		<pubDate>Fri, 27 Jun 2008 05:02:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.kuliniewicz.org/blog/?p=793#comment-1946</guid>
		<description>Yeah, I was only coming here to comment on the lack of Wallace as well.  I don't use Gnome and don't see the appeal to Bridge, so...</description>
		<content:encoded><![CDATA[<p>Yeah, I was only coming here to comment on the lack of Wallace as well.  I don&#8217;t use Gnome and don&#8217;t see the appeal to Bridge, so&#8230;</p>
]]></content:encoded>
	</item>
</channel>
</rss>
