<?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: Start a New Branch on your Remote Git Repository</title>
	<atom:link href="http://www.zorched.net/2008/04/14/start-a-new-branch-on-your-remote-git-repository/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.zorched.net/2008/04/14/start-a-new-branch-on-your-remote-git-repository/</link>
	<description>Musings of a software developer in Milwaukee, WI.</description>
	<pubDate>Tue, 06 Jan 2009 07:42:43 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Maurício Linhares</title>
		<link>http://www.zorched.net/2008/04/14/start-a-new-branch-on-your-remote-git-repository/comment-page-1/#comment-14332</link>
		<dc:creator>Maurício Linhares</dc:creator>
		<pubDate>Fri, 05 Dec 2008 19:37:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.zorched.net/?p=101#comment-14332</guid>
		<description>If someone happens to have a problem with pushing updates, at this command:

git checkout --track -b new_branch origin/new_feature_name

Instead of "new_branch" use the same name of the "new_feature_name". If you don't git won't be able to figure out where to push your changes.</description>
		<content:encoded><![CDATA[<p>If someone happens to have a problem with pushing updates, at this command:</p>
<p>git checkout &#8211;track -b new_branch origin/new_feature_name</p>
<p>Instead of &#8220;new_branch&#8221; use the same name of the &#8220;new_feature_name&#8221;. If you don&#8217;t git won&#8217;t be able to figure out where to push your changes.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Pavan Mishra</title>
		<link>http://www.zorched.net/2008/04/14/start-a-new-branch-on-your-remote-git-repository/comment-page-1/#comment-14317</link>
		<dc:creator>Pavan Mishra</dc:creator>
		<pubDate>Fri, 28 Nov 2008 10:10:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.zorched.net/?p=101#comment-14317</guid>
		<description>Quite helpful and concise. Thanks.</description>
		<content:encoded><![CDATA[<p>Quite helpful and concise. Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Vertical Visions :: A technical Blog about Scripting, Monitoring and so on...</title>
		<link>http://www.zorched.net/2008/04/14/start-a-new-branch-on-your-remote-git-repository/comment-page-1/#comment-14316</link>
		<dc:creator>Vertical Visions :: A technical Blog about Scripting, Monitoring and so on...</dc:creator>
		<pubDate>Thu, 27 Nov 2008 19:06:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.zorched.net/?p=101#comment-14316</guid>
		<description>[...] Blog-Eintrag zum Thema Arbeiten mit Remote Branches [...]</description>
		<content:encoded><![CDATA[<p>[...] Blog-Eintrag zum Thema Arbeiten mit Remote Branches [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nikos Dimitrakopoulos</title>
		<link>http://www.zorched.net/2008/04/14/start-a-new-branch-on-your-remote-git-repository/comment-page-1/#comment-14273</link>
		<dc:creator>Nikos Dimitrakopoulos</dc:creator>
		<pubDate>Sun, 16 Nov 2008 17:55:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.zorched.net/?p=101#comment-14273</guid>
		<description>(take from http://cheat.errtheblog.com/s/git):

git config branch.autosetupmerge true
  Tells git-branch and git-checkout to setup new branches so that git-pull(1)
  will appropriately merge from that remote branch.  Recommended.  Without this,
  you will have to add --track to your branch command or manually merge remote
  tracking branches with "fetch" and then "merge".</description>
		<content:encoded><![CDATA[<p>(take from <a href="http://cheat.errtheblog.com/s/git" rel="nofollow">http://cheat.errtheblog.com/s/git</a>):</p>
<p>git config branch.autosetupmerge true<br />
  Tells git-branch and git-checkout to setup new branches so that git-pull(1)<br />
  will appropriately merge from that remote branch.  Recommended.  Without this,<br />
  you will have to add &#8211;track to your branch command or manually merge remote<br />
  tracking branches with &#8220;fetch&#8221; and then &#8220;merge&#8221;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kai</title>
		<link>http://www.zorched.net/2008/04/14/start-a-new-branch-on-your-remote-git-repository/comment-page-1/#comment-13606</link>
		<dc:creator>Kai</dc:creator>
		<pubDate>Tue, 05 Aug 2008 06:36:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.zorched.net/?p=101#comment-13606</guid>
		<description>Pietro,

does this really setup tracking correctly? I had problems with that way when I modified that branch on a second computer. After I returned to the first computer where I initially setup the branch I tried to push some commited work and it told me, that the remote branch is somehow not compatible. But trying to merge the new commits into my local repo told me that there is no such remote head to sync with. Very strange. I had to rename my branch, merge the other branch into it and rebase it to commit it.

Not sure if I did everything right because I am still pretty new to git and originally came from subversion. Git is so much nicer in many ways but the workflow is completly different if you want to use it as its full potential. So I may sometimes still to thing "intuitively wrong".</description>
		<content:encoded><![CDATA[<p>Pietro,</p>
<p>does this really setup tracking correctly? I had problems with that way when I modified that branch on a second computer. After I returned to the first computer where I initially setup the branch I tried to push some commited work and it told me, that the remote branch is somehow not compatible. But trying to merge the new commits into my local repo told me that there is no such remote head to sync with. Very strange. I had to rename my branch, merge the other branch into it and rebase it to commit it.</p>
<p>Not sure if I did everything right because I am still pretty new to git and originally came from subversion. Git is so much nicer in many ways but the workflow is completly different if you want to use it as its full potential. So I may sometimes still to thing &#8220;intuitively wrong&#8221;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: pietro</title>
		<link>http://www.zorched.net/2008/04/14/start-a-new-branch-on-your-remote-git-repository/comment-page-1/#comment-13489</link>
		<dc:creator>pietro</dc:creator>
		<pubDate>Sun, 27 Jul 2008 03:13:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.zorched.net/?p=101#comment-13489</guid>
		<description>i think it is easier to first create the branch locally and then push it to the remote repo:

git checkout -b new_feature_name
git push origin new_feature_name</description>
		<content:encoded><![CDATA[<p>i think it is easier to first create the branch locally and then push it to the remote repo:</p>
<p>git checkout -b new_feature_name<br />
git push origin new_feature_name</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Collin VanDyck</title>
		<link>http://www.zorched.net/2008/04/14/start-a-new-branch-on-your-remote-git-repository/comment-page-1/#comment-12927</link>
		<dc:creator>Collin VanDyck</dc:creator>
		<pubDate>Sun, 15 Jun 2008 14:41:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.zorched.net/?p=101#comment-12927</guid>
		<description>Thanks very much for this; this is exactly what I was looking for.</description>
		<content:encoded><![CDATA[<p>Thanks very much for this; this is exactly what I was looking for.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Working with remote branches &#171; Aslak Johansen and Jan Chu @ DIKU</title>
		<link>http://www.zorched.net/2008/04/14/start-a-new-branch-on-your-remote-git-repository/comment-page-1/#comment-11246</link>
		<dc:creator>Working with remote branches &#171; Aslak Johansen and Jan Chu @ DIKU</dc:creator>
		<pubDate>Sun, 18 May 2008 20:55:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.zorched.net/?p=101#comment-11246</guid>
		<description>[...] Full description at this page. [...]</description>
		<content:encoded><![CDATA[<p>[...] Full description at this page. [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
