How do you make an existing git branch track a remote branch? - Stack Overflow most recent 30 from stackoverflow.com2009-12-05T14:32:42Zhttp://stackoverflow.com/feeds/question/520650http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/520650/how-do-you-make-an-existing-git-branch-track-a-remote-branch4How do you make an existing git branch track a remote branch?Pat Notz2009-02-06T15:14:04Z2009-11-12T23:31:29Z
<p>I know how to make a new branch that tracks remote branches. But how do I make an existing branch track a remote branch. I know I can just edit the .git/config file but it seems there should be an easier way.</p>
<p><strong>EDIT</strong> It looks like this can't currently be done in a convenient way with the current (1.6.1.x) version of Git.</p>
http://stackoverflow.com/questions/520650/how-do-you-make-an-existing-git-branch-track-a-remote-branch/520673#5206732Answer by mipadi for How do you make an existing git branch track a remote branch?mipadi2009-02-06T15:17:54Z2009-02-06T15:17:54Z<p>Editing <code>.git/config</code> is probably the easiest and fastest way. That's what the Git commands for handling remote branches are doing, anyway.</p>
<p>If you don't want to muck with the file by hand (and it's not that hard to do), you can always use <code>git config</code> to do it...but again, that's just going to edit the <code>.git/config</code> file, anyway.</p>
<p>There are, of course, ways to automatically track a remote branch when using <code>git checkout</code> (by passing the <code>--track</code> flag, for example), but these commands work with <em>new</em> branches, not existing ones.</p>
http://stackoverflow.com/questions/520650/how-do-you-make-an-existing-git-branch-track-a-remote-branch/521184#5211841Answer by floehopper for How do you make an existing git branch track a remote branch?floehopper2009-02-06T17:11:44Z2009-02-06T17:11:44Z<p>You might find the <a href="http://github.com/webmat/git_remote_branch" rel="nofollow"><code>git_remote_branch</code></a> tool useful. It offers simple commands for creating, publishing, deleting, tracking & renaming remote branches. One nice feature is that you can ask a <code>grb</code> command to explain what git commands it would execute.</p>
<pre><code> $ grb explain create my_branch github
# git_remote_branch version 0.3.0
# List of operations to do to create a new remote branch and track it locally:
git push github master:refs/heads/my_branch
git fetch github
git branch --track my_branch github/my_branch
git checkout my_branch
</code></pre>
http://stackoverflow.com/questions/520650/how-do-you-make-an-existing-git-branch-track-a-remote-branch/580366#580366-1Answer by Tudisco for How do you make an existing git branch track a remote branch?Tudisco2009-02-24T03:33:20Z2009-02-24T03:33:20Z<p>This worked best for me when creating new branches</p>
<p>Read Here:
<a href="http://www.zorched.net/2008/04/14/start-a-new-branch-on-your-remote-git-repository/" rel="nofollow">http://www.zorched.net/2008/04/14/start-a-new-branch-on-your-remote-git-repository/</a></p>
http://stackoverflow.com/questions/520650/how-do-you-make-an-existing-git-branch-track-a-remote-branch/625460#6254608Answer by Paul Hedderly for How do you make an existing git branch track a remote branch?Paul Hedderly2009-03-09T08:50:23Z2009-11-05T17:20:46Z<p>You can do this (assuming you are checked out on master and want to push to a remote branch master:</p>
<p>set up the 'remote' if you dont have it already</p>
<pre><code># git remote add origin ssh://...
</code></pre>
<p>now configure master to know to track</p>
<pre><code># git config branch.master.remote origin
# git config branch.master.merge refs/heads/master
</code></pre>
<p>and push</p>
<pre><code># git push origin master
</code></pre>
http://stackoverflow.com/questions/520650/how-do-you-make-an-existing-git-branch-track-a-remote-branch/1203866#12038665Answer by Matt Todd for How do you make an existing git branch track a remote branch?Matt Todd2009-07-30T00:43:09Z2009-07-30T00:43:09Z<p>@mipadi doesn't really answer the question; Paul's answer is the most useful.</p>
<pre><code>
git config branch.local_branch_name.remote your_remote
git config branch.local_branch_name.merge refs/heads/remote_branch_name
git push
</code></pre>
<ul>
<li><code>your_remote</code> is usually called <code>origin</code>, particularly for GitHub users.</li>
<li><code>local_branch_name</code> refers to the local branch you're wanting to set up to track the remote branch.</li>
<li><code>remote_branch_name</code> is the remote branch that the local branch will track.</li>
</ul>
http://stackoverflow.com/questions/520650/how-do-you-make-an-existing-git-branch-track-a-remote-branch/1726156#17261560Answer by mczepiel for How do you make an existing git branch track a remote branch?mczepiel2009-11-12T23:31:29Z2009-11-12T23:31:29Z<p>Assuming you have a local feature branch that isn't tracking a remote branch you could very easily create a tracking branch locally and then rebase your local feature branch on top of it. At that point you can then merge it in and push it back etc. Use it like the remote tracking branch that you've made it.</p>
<p>I think that would actually be the least intensive approach.</p>