Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I switch to master after develop on a branch for a long time. The log shows:

Your branch is behind 'origin/master' by 167 commits, and can be fast-forwarded.

I tried:

git checkout HEAD

It has no effect. This is cause because that I have checkout out an intermediate commit on master.

How to make master stay on head?

share|improve this question

3 Answers

up vote 60 down vote accepted

Doing:

git checkout master
git pull origin

will fetch and merge the origin/master branch (you may just say git pull as origin is the default).

share|improve this answer
It works! Thanks. – pengguang001 Mar 1 '12 at 8:13
1  
I think Rob's answer is better. I usually encounter this situation where I have just finished pulling and then I switch to a different branch, which needs to be fast-forwarded. It's annoying to me if I have to do another (no-op) pull and wait for it to complete; doing a local-only operation is faster and is what I want anyway. – Baron Schwartz May 9 at 18:09

Try git merge origin/master. If you want to be sure that it only does a fast-forward, you can say git merge --ff-only origin/master.

share|improve this answer
Worked like charm :) – func0der Nov 15 '12 at 20:14
git checkout master
git pull

should do the job.

You will get the "Your branch is behind" message every time when you work on a branch different than master, someone does changes to master and you git pull.

(branch) $ //hack hack hack, while someone push the changes to origin/master
(branch) $ git pull   

now the origin/master reference is pulled, but your master is not merged with it

(branch) $ git checkout master
(master) $ 

now master is behind origin/master and can be fast forwarded

this will pull and merge (so merge also newer commits to origin/master)
(master) $ git pull 

this will just merge what you have already pulled
(master) $ git merge origin/master

now your master and origin/master are in sync

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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