I am trying to checkout a remote branch:

Somebody pushed a branch called test with git push origin test to a shared repository. I can see the branch with git branch -r. But how can I get this branch?

  • git checkout test does nothing
  • git checkout origin/test does something, but git branch says * (no branch). I am on no branch?

How do I share branches via a public repository?

link|improve this question

feedback

4 Answers

up vote 137 down vote accepted

If you want to check out a local working branch based on origin/test you need to check it out with

git checkout -b test origin/test
link|improve this answer
24  
To expand on this: git doesn't allow you to work on someone else's branches. You can only work on your own. So if you want to add to someone else's branch, you need to create your own "copy" of that branch, which is what the above command does (well, it creates your branch and checks it out, too). – Dan Moulding Nov 23 '09 at 15:24
12  
If it's a new remote branch you may need to git fetch before doing this so that git is aware of origin/test – Neil Sarkar Nov 4 '11 at 14:38
2  
...and you would do this with git fetch origin test – Andrew Jan 22 at 23:24
feedback

In this case, you probably want to create a local test branch which is tracking the remote test branch:

$ git branch test origin/test

In earlier versions, you needed an explicit --track option, but that is the default now when you are branching off a remote branch.

link|improve this answer
1  
I did not know track was now default: nice. +1 – jkp Nov 23 '09 at 14:35
Only when branching off a remote branch. It's in the docs. :) – ndim Nov 23 '09 at 14:39
feedback

Sidenote: with modern Git (which means probably not yet released version) you would be able to use just

git checkout test

(note that it is 'test' not 'origin/test') to perform magical DWIM-mery and create local branch 'test' for you, for which upstream would be remote-tracking branch 'origin/test'.


The * (no branch) in git branch output means that you are on unnamed branch, in so called "detached HEAD" state (HEAD points directly to commit, and is not symbolic reference to some local branch). If you made some commits on this unnamed branch, you can always create local branch off curent commit:

git checkout -b test HEAD
link|improve this answer
1  
Unsurprising, but this version has been released in the last few years - knowing this syntax can save a lot of time since there's still a lot of old documentation and comment threads floating around that suggest the older method for doing this. – Curtis Apr 16 at 13:24
feedback
$git checkout -t remote_name/remote_branch

will DWIM for a remote not named orgin

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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