Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
The best answer has changed... I think it's time for you to change the acceped answer :) – mehaase May 7 at 16:53

8 Answers

up vote 730 down vote accepted

Before you can start working locally on a remote branch, you need to fetch it as called out in answers below.

To fetch a branch, you simply need to:

git fetch origin

This will fetch all of the remote branches for you. With the remote branches in hand, you now need to check out the branch you are interested in, giving you a local working copy:

git checkout -b test origin/test
share|improve this answer
87  
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
76  
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
19  
...and you would do this with git fetch origin test – Andrew Jan 22 '12 at 23:24
7  
Error: "git checkout: updating paths is incompatible with switching branches. Did you intend to checkout origin/test which can not be resolved as commit?" – Xeoncross Sep 11 '12 at 20:35
3  
I was getting the same error, and I just had to do a git fetch first: Git checkout on a remote branch does not work – mltsy Nov 20 '12 at 20:51
show 2 more comments

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.

share|improve this answer
11  
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
This should be the new accepted answer. – RobW May 20 at 13:56

Sidenote: With modern Git, you are 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
share|improve this answer
5  
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 '12 at 13:24
5  
"modern git"--for the record, (approx) what version are you referring to? Sometimes we have to work on systems running older distros. – Craig McQueen Aug 28 '12 at 2:30
2  
"modern git" in this context is git 1.6.6 – Bobby Norton Mar 19 at 20:29

Correct answer not working for you?

While the first and selected answer is technically correct, there's the possibility you have not yet retrieved all objects and refs from the remote repository. If that is the case, you'll receive the following error:

lamy@local ~# git checkout -b remote_branch origin/remote_branch 

fatal: git checkout: updating paths is incompatible with switching branches. 
Did you intend to checkout 'origin/remote_branch' which can not be resolved as commit?

Solution

If you receive this message, you must first do a git fetch origin where origin is the name of the remote repository prior to running git checkout remote_branch. Here's a full example with responses:

lamy@local ~# git fetch origin

remote: Counting objects: 140, done.
remote: Compressing objects: 100% (30/30), done.
remote: Total 69 (delta 36), reused 66 (delta 33)
Unpacking objects: 100% (69/69), done.
From https://github.com/githubuser/repo-name
   e6ef1e0..5029161  develop    -> origin/develop
 * [new branch]      demo       -> origin/demo
   d80f8d7..359eab0  master     -> origin/master

lamy@local ~# git checkout demo

Branch demo set up to track remote branch demo from origin.
Switched to a new branch 'demo'

As you can see, running git fetch origin retrieved any remote branches we were not yet setup to track on our local machine. From there, since we have now have a ref to the remote branch, we can simply run git checkout remote_branch and we'll gain the benefits of remote tracking.

share|improve this answer
3  
This was my exact problem. Thanks for the walk through. – I am John Galt Dec 27 '12 at 21:37
3  
Interesting your console shows that the commands are run with root instead of normal user... – Lamy Jan 11 at 10:47
Thanks for that! 'Correct' answer did not work for me and I was flummoxed ;-) – Henry Rusted Mar 12 at 19:16
You saved my morning! Thank you. – Tal May 9 at 14:33
$git checkout -t remote_name/remote_branch

will DWIM for a remote not named origin (doc)

To add a new remote, you will need to do the following first:

$git remote add remote_name location_of_remote
$git fetch remote_name

The first tells git the remote exists, the second gets the commits.

[edited in response to comment]

share|improve this answer
I had to do a git fetch first. (this comment's mostly a reminder for me the next time it doesn't work) – keithepley Dec 14 '12 at 17:28
@keithepley I edited the answer to make it more permanent. – tcaswell Dec 14 '12 at 22:19

If the branch is on something other than the origin remote I like to do the following:

$ git fetch
$ git checkout -b upstream/next upstream/next

This will checkout the next branch on the upstream remote in to a local branch called second/next. Which means if you already have a local branch named next it will not conflict.

$ git branch -a
* second/next
  remotes/origin/next
  remotes/upstream/next
share|improve this answer

I always forget to do a git fetch before I checkout the branch...So here is reminder

git fetch

git checkout -b local_branch_name origin/branch_name
share|improve this answer

If you planning to checkout git repository, you have to use git clone command like this

git clone

If you do the above command,checkout all the branches but normally master branch only will gets initializes. If you want to checkout other branches you have to tell like this...

git checkout -t origin/future_branch (for example) - This command checkout the remote branch and your local branch name will be same as remote branch.

Suppose if you want to override your local branch name while you checkout, do the following command

git checkout -t -b enhancement origin/future_branch - Now your local branch name is "enhancement" but your remote branch name is "future_branch".

More

share|improve this answer

protected by Praveen May 9 at 10:07

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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