<?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 for Raim</title>
	<atom:link href="http://raim.codingfarm.de/blog/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://raim.codingfarm.de/blog</link>
	<description>My personal front yard on the web</description>
	<lastBuildDate>Thu, 03 Sep 2009 12:05:36 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on Why I like bzr better than git by Jakub Narębski</title>
		<link>http://raim.codingfarm.de/blog/2009/09/02/why-i-like-bzr-better-than-git/comment-page-1/#comment-3378</link>
		<dc:creator>Jakub Narębski</dc:creator>
		<pubDate>Thu, 03 Sep 2009 12:05:36 +0000</pubDate>
		<guid isPermaLink="false">http://raim.codingfarm.de/blog/?p=57#comment-3378</guid>
		<description>* &lt;b&gt;Each branch has its own tree::&lt;/b&gt;

You can do the same setup with Git, either by having separate clones, perhaps with shared object database (alternates or symlink), or by using multiple working directories with single repository (with which contrib/worktree/git-new-worktree would help).  Nevertheless the multiple branches in single repository, with switching between branches using single working area, was something user&#039;s *wanted* and was created at user&#039;s request, and found very useful.


* &lt;b&gt;Semantic revision IDs::&lt;/b&gt;

Numerical monotonic (well, partially ordered in the case of nonlinear history) revision identifiers are possible only if there is *central numbering authority*.    Which means it is possible only in centralized workflow.  Or they are local and cannot be used to communicate with other developers.

Besides I don&#039;t think that e.g. &#039;r16437&#039; is easier to use than &#039;3f5907d&#039; shortened SHA-1 identifier, or more commonly used &#039;HEAD^&#039;, &#039;master~2&#039;, &#039;v1.2.3-rc1&#039;, or &#039;v1.6.4.2-260-g3f5907d&#039;, or &#039;@{1}&#039;.  Also if you have &#039;r15467&#039; and &#039;r15476&#039; you only know the topological relation between them *if they are on the same branch* (if one is ancestor of the other).


* &lt;b&gt;Hierarchical history::&lt;/b&gt;

Here I don&#039;t understand what you are talking about writing &quot;With git, all your history is flat.&quot;  Take a look at output of &quot;gitk&quot; or &quot;git log --graph&quot; / &quot;git log --graph --oneline&quot;.  If you are talking about merge messages, there is always `merge.summary` configuration option, where merge commit contains shortlog(s) of  merged branch(es).


* &lt;b&gt;Serving a branch is uncomplicated::&lt;/b&gt;

You can serve Git repository via HTTP with any web server with a little bit of extra information generated by git-update-server-info, usually run from hooks.  Also you have Gitosis third-party tool for easy setting up SSH access.  But I agree that it could be easier.

As to popularity of GitHub: isn&#039;t Launchpad as popular among bzr users?


* &lt;b&gt;Plugins and Aliases::&lt;/b&gt;

Plugins, stable API, and ever changing repository format (for Bazaar) versus scriptability (suing low level &quot;plumbing&quot; tools provided for that purpose) and stable repository format allowing for independent reimplementations like JGit or Dulwich are design decision.  *Both* have their advantages and disadvantages.

Git has also aliases, with the limitation (needed for scriptability) that you can have the same name of alias as existing Git command.  Many commands have configuration which are equivalent to command line options, but the idea to add ability to specify default command line options was discussed but didn&#039;t made it into git (because of difficulties with not breaking existing scripts).


* &lt;b&gt;Library Interfaces::&lt;/b&gt;

&quot;The main interface of git is the command line interface. It is used both for user interaction and automation [...]&quot;.  Not true.  Well, not entirely true.  There is set of git commands (so called &quot;plumbing&quot; commands) which are meant to be used for automation (commands like git-checkout-index, git-update-index, git-diff-files, git-write-tree, git-cat-file, git-symbolic-ref), and there is set of git commands (so called &quot;porcelain&quot; commands) which are meant to be used for user interaction (commands like &quot;git show&quot;, &quot;git log&quot;, &quot;git diff&quot;, &quot;git branch&quot;).

There is currenly no Git library (the work on libgit2 is stalled), but on the other hand stable repository format and transmission protocols (with place for extending it) allow for *reimplementations* of Git in other languages (JGit in Java, Dulwich in Python, Git# / Managed Git in C#) even if there are no libified bindings for other languages.

I agree that it would be nice to have Git library.


* &lt;b&gt;Gun safety::&lt;/b&gt;

&quot;With git I got several times to the point where I just deleted the repository to start over. [...] Maybe I am just not experienced enough with git.&quot;

Yes, you are not experienced enough with git.

In the case of botched merge, you can always do &quot;git reset --hard ORIG_HEAD&quot; to go back to situation before merge.  Also, if you don&#039;t want to commit merge automatically, there is `--no-commit` option...


* &lt;b&gt;Conclusion::&lt;/b&gt;

If bzr just works for you, there is no reason to swicth to git.</description>
		<content:encoded><![CDATA[<p>* <b>Each branch has its own tree::</b></p>
<p>You can do the same setup with Git, either by having separate clones, perhaps with shared object database (alternates or symlink), or by using multiple working directories with single repository (with which contrib/worktree/git-new-worktree would help).  Nevertheless the multiple branches in single repository, with switching between branches using single working area, was something user&#8217;s *wanted* and was created at user&#8217;s request, and found very useful.</p>
<p>* <b>Semantic revision IDs::</b></p>
<p>Numerical monotonic (well, partially ordered in the case of nonlinear history) revision identifiers are possible only if there is *central numbering authority*.    Which means it is possible only in centralized workflow.  Or they are local and cannot be used to communicate with other developers.</p>
<p>Besides I don&#8217;t think that e.g. &#8216;r16437&#8242; is easier to use than &#8216;3f5907d&#8217; shortened SHA-1 identifier, or more commonly used &#8216;HEAD^&#8217;, &#8216;master~2&#8242;, &#8216;v1.2.3-rc1&#8242;, or &#8216;v1.6.4.2-260-g3f5907d&#8217;, or &#8216;@{1}&#8217;.  Also if you have &#8216;r15467&#8242; and &#8216;r15476&#8242; you only know the topological relation between them *if they are on the same branch* (if one is ancestor of the other).</p>
<p>* <b>Hierarchical history::</b></p>
<p>Here I don&#8217;t understand what you are talking about writing &#8220;With git, all your history is flat.&#8221;  Take a look at output of &#8220;gitk&#8221; or &#8220;git log &#8211;graph&#8221; / &#8220;git log &#8211;graph &#8211;oneline&#8221;.  If you are talking about merge messages, there is always `merge.summary` configuration option, where merge commit contains shortlog(s) of  merged branch(es).</p>
<p>* <b>Serving a branch is uncomplicated::</b></p>
<p>You can serve Git repository via HTTP with any web server with a little bit of extra information generated by git-update-server-info, usually run from hooks.  Also you have Gitosis third-party tool for easy setting up SSH access.  But I agree that it could be easier.</p>
<p>As to popularity of GitHub: isn&#8217;t Launchpad as popular among bzr users?</p>
<p>* <b>Plugins and Aliases::</b></p>
<p>Plugins, stable API, and ever changing repository format (for Bazaar) versus scriptability (suing low level &#8220;plumbing&#8221; tools provided for that purpose) and stable repository format allowing for independent reimplementations like JGit or Dulwich are design decision.  *Both* have their advantages and disadvantages.</p>
<p>Git has also aliases, with the limitation (needed for scriptability) that you can have the same name of alias as existing Git command.  Many commands have configuration which are equivalent to command line options, but the idea to add ability to specify default command line options was discussed but didn&#8217;t made it into git (because of difficulties with not breaking existing scripts).</p>
<p>* <b>Library Interfaces::</b></p>
<p>&#8220;The main interface of git is the command line interface. It is used both for user interaction and automation [...]&#8220;.  Not true.  Well, not entirely true.  There is set of git commands (so called &#8220;plumbing&#8221; commands) which are meant to be used for automation (commands like git-checkout-index, git-update-index, git-diff-files, git-write-tree, git-cat-file, git-symbolic-ref), and there is set of git commands (so called &#8220;porcelain&#8221; commands) which are meant to be used for user interaction (commands like &#8220;git show&#8221;, &#8220;git log&#8221;, &#8220;git diff&#8221;, &#8220;git branch&#8221;).</p>
<p>There is currenly no Git library (the work on libgit2 is stalled), but on the other hand stable repository format and transmission protocols (with place for extending it) allow for *reimplementations* of Git in other languages (JGit in Java, Dulwich in Python, Git# / Managed Git in C#) even if there are no libified bindings for other languages.</p>
<p>I agree that it would be nice to have Git library.</p>
<p>* <b>Gun safety::</b></p>
<p>&#8220;With git I got several times to the point where I just deleted the repository to start over. [...] Maybe I am just not experienced enough with git.&#8221;</p>
<p>Yes, you are not experienced enough with git.</p>
<p>In the case of botched merge, you can always do &#8220;git reset &#8211;hard ORIG_HEAD&#8221; to go back to situation before merge.  Also, if you don&#8217;t want to commit merge automatically, there is `&#8211;no-commit` option&#8230;</p>
<p>* <b>Conclusion::</b></p>
<p>If bzr just works for you, there is no reason to swicth to git.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Subversion diff commands by stev.ie/ &#187; Blog Archive</title>
		<link>http://raim.codingfarm.de/blog/2009/03/17/subversion-diff-commands/comment-page-1/#comment-3190</link>
		<dc:creator>stev.ie/ &#187; Blog Archive</dc:creator>
		<pubDate>Tue, 18 Aug 2009 10:20:00 +0000</pubDate>
		<guid isPermaLink="false">http://raim.codingfarm.de/blog/?p=28#comment-3190</guid>
		<description>[...] Via. [...]</description>
		<content:encoded><![CDATA[<p>[...] Via. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on X-Chat Aqua for Mac OS X by hexa</title>
		<link>http://raim.codingfarm.de/blog/2009/01/21/x-chat-aqua-for-mac-os-x/comment-page-1/#comment-2246</link>
		<dc:creator>hexa</dc:creator>
		<pubDate>Mon, 13 Jul 2009 07:51:54 +0000</pubDate>
		<guid isPermaLink="false">http://raim.codingfarm.de/blog/?p=6#comment-2246</guid>
		<description>hi,

another (more recent build) is available. this has been built by Steven Noonan (tycho) and can be downloaded at http://www.uplinklabs.net/~tycho/projects/xchat-aqua/ or http://verloren-im.net/dl/X-Chat_Aqua_0.17.0-rc1.zip

it&#039;s including a localized interface (german looks good so far) and some more fixes/features.

regards,
chris</description>
		<content:encoded><![CDATA[<p>hi,</p>
<p>another (more recent build) is available. this has been built by Steven Noonan (tycho) and can be downloaded at <a href="http://www.uplinklabs.net/~tycho/projects/xchat-aqua/" rel="nofollow">http://www.uplinklabs.net/~tycho/projects/xchat-aqua/</a> or <a href="http://verloren-im.net/dl/X-Chat_Aqua_0.17.0-rc1.zip" rel="nofollow">http://verloren-im.net/dl/X-Chat_Aqua_0.17.0-rc1.zip</a></p>
<p>it&#8217;s including a localized interface (german looks good so far) and some more fixes/features.</p>
<p>regards,<br />
chris</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on X-Chat Aqua for Mac OS X by Raim</title>
		<link>http://raim.codingfarm.de/blog/2009/01/21/x-chat-aqua-for-mac-os-x/comment-page-1/#comment-1130</link>
		<dc:creator>Raim</dc:creator>
		<pubDate>Thu, 11 Jun 2009 14:12:44 +0000</pubDate>
		<guid isPermaLink="false">http://raim.codingfarm.de/blog/?p=6#comment-1130</guid>
		<description>&lt;a href=&quot;#comment-1129&quot; rel=&quot;nofollow&quot;&gt;@Gonzie&lt;/a&gt; 
Please report bugs to the &lt;a href=&quot;http://sourceforge.net/projects/xchataqua&quot; rel=&quot;nofollow&quot;&gt;sourceforge.net project&lt;/a&gt; (forum or tracker) and not to me. I am only offering this build, but I do not work on it.</description>
		<content:encoded><![CDATA[<p><a href="#comment-1129" rel="nofollow">@Gonzie</a><br />
Please report bugs to the <a href="http://sourceforge.net/projects/xchataqua" rel="nofollow">sourceforge.net project</a> (forum or tracker) and not to me. I am only offering this build, but I do not work on it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on X-Chat Aqua for Mac OS X by Gonzie</title>
		<link>http://raim.codingfarm.de/blog/2009/01/21/x-chat-aqua-for-mac-os-x/comment-page-1/#comment-1129</link>
		<dc:creator>Gonzie</dc:creator>
		<pubDate>Thu, 11 Jun 2009 13:56:35 +0000</pubDate>
		<guid isPermaLink="false">http://raim.codingfarm.de/blog/?p=6#comment-1129</guid>
		<description>I&#039;ve found a bug :( if you double click a channel or dialog in the side tabs window the text focus disappears until you change views back and fourth with command  and 1 then 2 for example</description>
		<content:encoded><![CDATA[<p>I&#8217;ve found a bug <img src='http://raim.codingfarm.de/blog/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' />  if you double click a channel or dialog in the side tabs window the text focus disappears until you change views back and fourth with command  and 1 then 2 for example</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on X-Chat Aqua for Mac OS X by kuoirad</title>
		<link>http://raim.codingfarm.de/blog/2009/01/21/x-chat-aqua-for-mac-os-x/comment-page-1/#comment-1102</link>
		<dc:creator>kuoirad</dc:creator>
		<pubDate>Wed, 10 Jun 2009 03:53:05 +0000</pubDate>
		<guid isPermaLink="false">http://raim.codingfarm.de/blog/?p=6#comment-1102</guid>
		<description>Raim:

Thanks for the update, much appreciated.

For anyone who might find the scrollback/logging feature that&#039;s on by default a pain, the way to turn it off is to either type &quot;/set text_replay off&quot; in a window, or edit ~/Library/Application Support/X-Chat Aqua/xchat.conf to have the line &quot;text_replay = 0&quot; in it.</description>
		<content:encoded><![CDATA[<p>Raim:</p>
<p>Thanks for the update, much appreciated.</p>
<p>For anyone who might find the scrollback/logging feature that&#8217;s on by default a pain, the way to turn it off is to either type &#8220;/set text_replay off&#8221; in a window, or edit ~/Library/Application Support/X-Chat Aqua/xchat.conf to have the line &#8220;text_replay = 0&#8243; in it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on X-Chat Aqua for Mac OS X by Happy Linux</title>
		<link>http://raim.codingfarm.de/blog/2009/01/21/x-chat-aqua-for-mac-os-x/comment-page-1/#comment-1073</link>
		<dc:creator>Happy Linux</dc:creator>
		<pubDate>Mon, 08 Jun 2009 20:23:53 +0000</pubDate>
		<guid isPermaLink="false">http://raim.codingfarm.de/blog/?p=6#comment-1073</guid>
		<description>Big thnx für these xchat for Mac :-]</description>
		<content:encoded><![CDATA[<p>Big thnx für these xchat for Mac :-]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on X-Chat Aqua for Mac OS X by kimac</title>
		<link>http://raim.codingfarm.de/blog/2009/01/21/x-chat-aqua-for-mac-os-x/comment-page-1/#comment-1057</link>
		<dc:creator>kimac</dc:creator>
		<pubDate>Sun, 07 Jun 2009 23:12:57 +0000</pubDate>
		<guid isPermaLink="false">http://raim.codingfarm.de/blog/?p=6#comment-1057</guid>
		<description>Thanks for the X-Chat build!</description>
		<content:encoded><![CDATA[<p>Thanks for the X-Chat build!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on X-Chat Aqua for Mac OS X by Paulo</title>
		<link>http://raim.codingfarm.de/blog/2009/01/21/x-chat-aqua-for-mac-os-x/comment-page-1/#comment-1033</link>
		<dc:creator>Paulo</dc:creator>
		<pubDate>Fri, 05 Jun 2009 13:41:13 +0000</pubDate>
		<guid isPermaLink="false">http://raim.codingfarm.de/blog/?p=6#comment-1033</guid>
		<description>Just posting to say thanks for this update! Keep up the good work :)</description>
		<content:encoded><![CDATA[<p>Just posting to say thanks for this update! Keep up the good work <img src='http://raim.codingfarm.de/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on X-Chat Aqua for Mac OS X by Raim</title>
		<link>http://raim.codingfarm.de/blog/2009/01/21/x-chat-aqua-for-mac-os-x/comment-page-1/#comment-1024</link>
		<dc:creator>Raim</dc:creator>
		<pubDate>Wed, 03 Jun 2009 17:23:25 +0000</pubDate>
		<guid isPermaLink="false">http://raim.codingfarm.de/blog/?p=6#comment-1024</guid>
		<description>&lt;a href=&quot;#comment-765&quot; rel=&quot;nofollow&quot;&gt;@brembo&lt;/a&gt; 
I do not write many scripts for X-Chat, so I think you would be better off with the &lt;a href=&quot;http://xchat.org/docs/&quot; rel=&quot;nofollow&quot;&gt;official docs&lt;/a&gt;.</description>
		<content:encoded><![CDATA[<p><a href="#comment-765" rel="nofollow">@brembo</a><br />
I do not write many scripts for X-Chat, so I think you would be better off with the <a href="http://xchat.org/docs/" rel="nofollow">official docs</a>.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
