My problem is related to:

Fatal Git error when switching branch

I try to fetch a remote branch with the command

git checkout -b local-name origin/remote-name

but I get this error message:

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

If I mannually create a branch, and then pull the remote branch, it does work, just as making a new clone and checking the branch out.

Why does it not work on the repository I work with?

link|improve this question

80% accept rate
what has changed since the first instance of that command (triggering the error message) ? – VonC Jun 3 '09 at 19:43
feedback

10 Answers

up vote 217 down vote accepted

I believe this occurs when you are trying to checkout a remote branch that your local git repo is not aware of yet. Try:

git remote show origin

If the remote branch you want to checkout is under "New remote branches" and not "Tracked remote branches" then you need to fetch them first:

git fetch

Now it should work:

git checkout -b local-name origin/remote-name
link|improve this answer
3  
This solved the problem for me, not the above arbitrary answer. – Jessedc Mar 10 '10 at 21:58
10  
That should be "git fetch REPOSITORY_NAME" to get all of the branches on that repository. – Mike Thomsen Mar 24 '10 at 22:36
1  
not necessarily. git fetch will get all of the branches from all remote repos. – Michael Grinich Jun 6 '10 at 23:33
This was very helpful - thanks! – shedd Dec 7 '10 at 16:54
@Michael sometimes you need to specify the remotes name like @Mike noted. – shennyg May 30 '11 at 0:49
show 3 more comments
feedback

Alternate syntax,

git fetch origin remote_branch_name:local_branch_name
link|improve this answer
feedback

Not sure if this is helpful or exactly relevant to your question, but if you are trying to fetch and checkout only a single branch from the remote repository, then the following git commands will do the trick:

url= << URL TO REPOSITORY >>
branch= << BRANCH NAME >>

git init
git remote add origin $url
git fetch origin $branch:origin/$branch
git checkout -b $branch --track origin/$branch
link|improve this answer
feedback

I don't know why, or how, but this seemed to have solved my problem.

Some (seemly) arbitrary commands seem to solve the problem:

git checkout -f master
git pull
git checkout --track -b

Although you get some error messages, it does work.

link|improve this answer
3  
You should edit this post to include what that page described as the answer and then accept this as the answer. That way if that site dies someone can still find the answer here. Also that would take it out of the list of unanswered questions. – docgnome Jun 13 '09 at 5:32
feedback

none of the above worked for me. My situation is slightly different, my remote branch is not at origin. but in a different repository.

git remote add remoterepo GIT_URL.git
git fetch remoterepo
git checkout -b branchname remoterepo/branchname

tip: if you don't see the remote branch in the following output git branch -v -a there is no way to check it out.

Confirmed working on 1.7.5.4

link|improve this answer
arf, just realize VirtualStaticVoid had the same solution! – Olivier Refalo Jul 11 '11 at 20:35
feedback

I suspect there is no remote branch named remote-name, but that you've inadvertently created a local branch named origin/remote-name.

Is it possible you at some point typed:

git branch origin/remote-name

Thus creating a local branch named origin/remote-name? Type this command:

git checkout origin/remote-name

You'll either see:

Switched to branch "origin/remote-name"

which means it's really a mis-named local branch, or

Note: moving to "origin/rework-isscoring" which isn't a local branch
If you want to create a new branch from this checkout, you may do so
(now or later) by using -b with the checkout command again. Example:
  git checkout -b 

which means it really is a remote branch.

link|improve this answer
feedback

It's not very intuitive but this works well for me ...

  mkdir remote.git & cd remote.git & git init
  git remote add origin $REPO
  git fetch origin $BRANCH:refs/remotes/origin/$BRANCH        

THEN run the git branch --track command ...

  git branch --track $BRANCH origin/$BRANCH
link|improve this answer
feedback

Could your issue be linked to this other SO question "checkout problem"?

i.e.: a problem related to:

  • an old version of Git
  • a curious checkout syntax, which should be: git checkout -b [<new_branch>] [<start_point>], with [<start_point>] referring to the name of a commit at which to start the new branch, and 'origin/remote-name' is not that.
    (whereas git branch does support a start_point being the name of a remote branch)

Note: what the checkout.sh script says is:

  if test '' != "$newbranch$force$merge"
  then
    die "git checkout: updating paths is incompatible with switching branches/forcing$hint"
  fi

It is like the syntax git checkout -b [] [remote_branch_name] was both renaming the branch and resetting the new starting point of the new branch, which is deemed incompatible.

link|improve this answer
The problem is solved. git checkout -b local-name remote/remote-branch does actually work – Ikke Jun 3 '09 at 19:38
Interesting, what has changed since the first instance of that command (triggering the error message) ? – VonC Jun 3 '09 at 19:43
feedback

For me what worked was:

git fetch

Which pulls all the refs down to your machine for all the branches on remote. Then I could do

git checkout <branchname>

and that worked perfectly. Similar to the top voted answer, but a little more simple.

link|improve this answer
feedback

After fetching a zillion times still added remotes didn't show up, although the blobs were in the pool. Turns out the --tags option shouldn't be given to git remote add for whatever reason. You can manually remove it from the .git/config to make git fetch create the refs.

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.