<?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: Git: Using topic branches and interactive rebasing effectively</title>
	<atom:link href="http://blog.mozilla.org/webdev/2011/11/21/git-using-topic-branches-and-interactive-rebasing-effectively/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.mozilla.org/webdev/2011/11/21/git-using-topic-branches-and-interactive-rebasing-effectively/</link>
	<description>Engineering the web</description>
	<lastBuildDate>Fri, 17 May 2013 21:43:21 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
	<item>
		<title>By: Jannis Leidel</title>
		<link>http://blog.mozilla.org/webdev/2011/11/21/git-using-topic-branches-and-interactive-rebasing-effectively/comment-page-1/#comment-219604</link>
		<dc:creator>Jannis Leidel</dc:creator>
		<pubDate>Tue, 29 Nov 2011 09:26:53 +0000</pubDate>
		<guid isPermaLink="false">http://blog.mozilla.org/webdev/?p=2245#comment-219604</guid>
		<description><![CDATA[I can&#039;t stress enough how useful defunkt&#039;s &quot;hub&quot; command tool is: https://github.com/defunkt/hub This should remove the need for a few ninja moves.]]></description>
		<content:encoded><![CDATA[<p>I can&#8217;t stress enough how useful defunkt&#8217;s &#8220;hub&#8221; command tool is: <a href="https://github.com/defunkt/hub" rel="nofollow">https://github.com/defunkt/hub</a> This should remove the need for a few ninja moves.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: kumar303</title>
		<link>http://blog.mozilla.org/webdev/2011/11/21/git-using-topic-branches-and-interactive-rebasing-effectively/comment-page-1/#comment-219389</link>
		<dc:creator>kumar303</dc:creator>
		<pubDate>Wed, 23 Nov 2011 15:52:22 +0000</pubDate>
		<guid isPermaLink="false">http://blog.mozilla.org/webdev/?p=2245#comment-219389</guid>
		<description><![CDATA[@Allen whoa, I didn&#039;t know that git commit --amend worked the same as fixing up the last commit with new changes. Thanks!]]></description>
		<content:encoded><![CDATA[<p>@Allen whoa, I didn&#8217;t know that git commit &#8211;amend worked the same as fixing up the last commit with new changes. Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Marlena</title>
		<link>http://blog.mozilla.org/webdev/2011/11/21/git-using-topic-branches-and-interactive-rebasing-effectively/comment-page-1/#comment-219351</link>
		<dc:creator>Marlena</dc:creator>
		<pubDate>Tue, 22 Nov 2011 22:29:06 +0000</pubDate>
		<guid isPermaLink="false">http://blog.mozilla.org/webdev/?p=2245#comment-219351</guid>
		<description><![CDATA[Thanks for writing this up.  It makes the reasons for rebasing much clearer.]]></description>
		<content:encoded><![CDATA[<p>Thanks for writing this up.  It makes the reasons for rebasing much clearer.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: kumar303</title>
		<link>http://blog.mozilla.org/webdev/2011/11/21/git-using-topic-branches-and-interactive-rebasing-effectively/comment-page-1/#comment-219348</link>
		<dc:creator>kumar303</dc:creator>
		<pubDate>Tue, 22 Nov 2011 21:13:48 +0000</pubDate>
		<guid isPermaLink="false">http://blog.mozilla.org/webdev/?p=2245#comment-219348</guid>
		<description><![CDATA[@Stefan hmm, that doesn&#039;t work for me. Maybe my config is missing some values to make fetch do what it does for you.]]></description>
		<content:encoded><![CDATA[<p>@Stefan hmm, that doesn&#8217;t work for me. Maybe my config is missing some values to make fetch do what it does for you.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Stefan Naewe</title>
		<link>http://blog.mozilla.org/webdev/2011/11/21/git-using-topic-branches-and-interactive-rebasing-effectively/comment-page-1/#comment-219324</link>
		<dc:creator>Stefan Naewe</dc:creator>
		<pubDate>Tue, 22 Nov 2011 08:23:06 +0000</pubDate>
		<guid isPermaLink="false">http://blog.mozilla.org/webdev/?p=2245#comment-219324</guid>
		<description><![CDATA[Me too on the “Synchronization with master, for ninjas”: You can even skip the `git checkout ... git checkout` part. Just do `git fetch &amp;&amp; git rebase origin/master` (or even easier: use `git config branch..rebase`).]]></description>
		<content:encoded><![CDATA[<p>Me too on the “Synchronization with master, for ninjas”: You can even skip the `git checkout &#8230; git checkout` part. Just do `git fetch &amp;&amp; git rebase origin/master` (or even easier: use `git config branch..rebase`).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Allen</title>
		<link>http://blog.mozilla.org/webdev/2011/11/21/git-using-topic-branches-and-interactive-rebasing-effectively/comment-page-1/#comment-219323</link>
		<dc:creator>Allen</dc:creator>
		<pubDate>Tue, 22 Nov 2011 08:03:38 +0000</pubDate>
		<guid isPermaLink="false">http://blog.mozilla.org/webdev/?p=2245#comment-219323</guid>
		<description><![CDATA[You can use `git commit --amend` instead of having to commit a fixup revision, if you&#039;re just changing the last one.]]></description>
		<content:encoded><![CDATA[<p>You can use `git commit &#8211;amend` instead of having to commit a fixup revision, if you&#8217;re just changing the last one.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: kumar303</title>
		<link>http://blog.mozilla.org/webdev/2011/11/21/git-using-topic-branches-and-interactive-rebasing-effectively/comment-page-1/#comment-219301</link>
		<dc:creator>kumar303</dc:creator>
		<pubDate>Mon, 21 Nov 2011 21:15:20 +0000</pubDate>
		<guid isPermaLink="false">http://blog.mozilla.org/webdev/?p=2245#comment-219301</guid>
		<description><![CDATA[@Fernando wow, thanks!  I didn&#039;t know you could do that and I like that better too.  I updated my dotfiles: https://github.com/kumar303/dotfiles]]></description>
		<content:encoded><![CDATA[<p>@Fernando wow, thanks!  I didn&#8217;t know you could do that and I like that better too.  I updated my dotfiles: <a href="https://github.com/kumar303/dotfiles" rel="nofollow">https://github.com/kumar303/dotfiles</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Fernando Takai</title>
		<link>http://blog.mozilla.org/webdev/2011/11/21/git-using-topic-branches-and-interactive-rebasing-effectively/comment-page-1/#comment-219299</link>
		<dc:creator>Fernando Takai</dc:creator>
		<pubDate>Mon, 21 Nov 2011 21:01:10 +0000</pubDate>
		<guid isPermaLink="false">http://blog.mozilla.org/webdev/?p=2245#comment-219299</guid>
		<description><![CDATA[On the &quot;Synchronization with master, for ninjas&quot; you can skip the branch param using git checkout - (it works just like cd -).

&quot;!f() { echo Syncing this branch with master &amp;&amp; git checkout master &amp;&amp; git pull &amp;&amp; git checkout - &amp;&amp; git rebase master; }; f&quot;

I think it gets not only easier but makes a little bit more intuitive.]]></description>
		<content:encoded><![CDATA[<p>On the &#8220;Synchronization with master, for ninjas&#8221; you can skip the branch param using git checkout &#8211; (it works just like cd -).</p>
<p>&#8220;!f() { echo Syncing this branch with master &amp;&amp; git checkout master &amp;&amp; git pull &amp;&amp; git checkout &#8211; &amp;&amp; git rebase master; }; f&#8221;</p>
<p>I think it gets not only easier but makes a little bit more intuitive.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nick</title>
		<link>http://blog.mozilla.org/webdev/2011/11/21/git-using-topic-branches-and-interactive-rebasing-effectively/comment-page-1/#comment-219297</link>
		<dc:creator>Nick</dc:creator>
		<pubDate>Mon, 21 Nov 2011 20:17:58 +0000</pubDate>
		<guid isPermaLink="false">http://blog.mozilla.org/webdev/?p=2245#comment-219297</guid>
		<description><![CDATA[Beautiful article. I work with your exact workflow and it rocks.]]></description>
		<content:encoded><![CDATA[<p>Beautiful article. I work with your exact workflow and it rocks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: kumar303</title>
		<link>http://blog.mozilla.org/webdev/2011/11/21/git-using-topic-branches-and-interactive-rebasing-effectively/comment-page-1/#comment-219294</link>
		<dc:creator>kumar303</dc:creator>
		<pubDate>Mon, 21 Nov 2011 17:34:36 +0000</pubDate>
		<guid isPermaLink="false">http://blog.mozilla.org/webdev/?p=2245#comment-219294</guid>
		<description><![CDATA[@Matt git&#039;s cli interface is one of the most unintuitive, inconsistent interfaces I&#039;ve come across but I have grown to love it. Stockholm syndrome? :) I wish hg did this stuff out of the box better. Plus, I am scared to rewrite hg history because you actually are deleting nodes in your repo unlike in git which is more mark and sweep.]]></description>
		<content:encoded><![CDATA[<p>@Matt git&#8217;s cli interface is one of the most unintuitive, inconsistent interfaces I&#8217;ve come across but I have grown to love it. Stockholm syndrome? <img src='http://blog.mozilla.org/webdev/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  I wish hg did this stuff out of the box better. Plus, I am scared to rewrite hg history because you actually are deleting nodes in your repo unlike in git which is more mark and sweep.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
