vote up 4 vote down star
7

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.

EDIT It looks like this can't currently be done in a convenient way with the current (1.6.1.x) version of Git.

flag

6 Answers

vote up 2 vote down check

Editing .git/config is probably the easiest and fastest way. That's what the Git commands for handling remote branches are doing, anyway.

If you don't want to muck with the file by hand (and it's not that hard to do), you can always use git config to do it...but again, that's just going to edit the .git/config file, anyway.

There are, of course, ways to automatically track a remote branch when using git checkout (by passing the --track flag, for example), but these commands work with new branches, not existing ones.

link|flag
vote up 1 vote down

You might find the git_remote_branch tool useful. It offers simple commands for creating, publishing, deleting, tracking & renaming remote branches. One nice feature is that you can ask a grb command to explain what git commands it would execute.

  $ 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
link|flag
vote up -1 vote down

This worked best for me when creating new branches

Read Here: http://www.zorched.net/2008/04/14/start-a-new-branch-on-your-remote-git-repository/

link|flag
vote up 8 vote down

You can do this (assuming you are checked out on master and want to push to a remote branch master:

set up the 'remote' if you dont have it already

# git remote add origin ssh://...

now configure master to know to track

# git config branch.master.remote origin
# git config branch.master.merge refs/heads/master

and push

# git push origin master
link|flag
vote up 5 vote down

@mipadi doesn't really answer the question; Paul's answer is the most useful.


git config branch.local_branch_name.remote your_remote
git config branch.local_branch_name.merge refs/heads/remote_branch_name

git push
  • your_remote is usually called origin, particularly for GitHub users.
  • local_branch_name refers to the local branch you're wanting to set up to track the remote branch.
  • remote_branch_name is the remote branch that the local branch will track.
link|flag
vote up 0 vote down

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.

I think that would actually be the least intensive approach.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.