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

Another question said git pull is like a git fetch + git merge.

But what is the difference between git pull VS git fetch + git rebase?

share|improve this question
2  
someone should clean up the link... and I'm amazed at how many votes that other question got. – xenoterracide Jul 28 '10 at 20:33
6  
@xeno: I think its just a count of how many people go "I had this question too" – bobobobo Jul 28 '10 at 21:10
Some day I'll find time to really read the git documentation, but until then, I'm adding my votes to these types of questions – Eran Medan Sep 18 '12 at 16:03

2 Answers

up vote 88 down vote accepted

It should be pretty obvious from your question that you're actually just asking about the difference between git merge and git rebase.

So let's suppose you're in the common case - you've done some work on your master branch, and you pull from origin's, which also has done some work. After the fetch, things look like this:

- o - o - o - o - A - B - C (master)
               \
                P - Q - R (origin/master)

If you merge at this point (the default behavior of git pull), assuming there aren't any conflicts, you end up with this:

- o - o - o - o - A - B - C - X (master)
               \             /
                P - Q - R --- (origin/master)

If on the other hand you did the appropriate rebase, you'd end up with this:

- o - o - o - o - P - Q - R - A - B - C (master)
                          (
                          (origin/master)

The content of your work tree should end up the same in both cases; you've just created a different history leading up to it. The rebase rewrites your history, making it look as if you'd committed on top of origin's new master branch, instead of where you originally committed. You should never use the rebase approach if someone else has already pulled from your master branch.

Finally, note that you can actually set up git pull for a given branch to use rebase instead of merge by setting the config parameter branch.<name>.rebase to true. You can also do this for a single pull using git pull --rebase.

share|improve this answer
19  
What happens if you were to rebase after someone had already pulled from your master branch? Would that break the repo? – didibus Mar 22 '11 at 6:36
1  
How do you know if someone has pulled from your master branch? – Frank Aug 7 '12 at 5:47
2  
If you don't know for sure that someone hasn't, you should assume that they have. – Chris Down Feb 11 at 6:20

for starters if you want git fetch && git rebase do git pull --rebase which does exactly the same thing.

You have to understand what rebase does. Effectively what rebase will do is rewrite your history and place any patches you have that aren't in that history on top of it.

A merge will not rewrite your history, if it is not a fast-forward it will end up making a new commit to resolve the merge.

share|improve this answer
51  
Actually, "git pull --rebase" is not exactly the same as "git fetch && git rebase". The difference is that pull --rebase will use the reflog to recover from an upstream rebase, by looking back to before the fetch and rebasing your local commits from the previous version of the upstream branch. git-rebase alone cannot do this without you telling it to, and would do the wrong thing if upstream rebased. – cxreg Jul 28 '10 at 21:49
16  
cxreg's comment is so CRITICALLY IMPORTANT that it ought to be made it's own answer and be given enough up votes that every git user finds it and reads it. Everyone who thinks git pull --rebase === git fetch && git rebase is missing a big part of the story that will come back to bite them some day. Their is some extra magic built in that only shows up when the upstream branch has been rebased. If you work with large teams you will encounter this regularly. – Richard Bronosky Jan 18 '12 at 14:55
1  
Absolutely right! More details here: stackoverflow.com/a/11531502/179332 – Adam Spiers Jul 17 '12 at 22:03
reading these comments make me really feel I need to finally read the git docs instead of doing guess work. – Eran Medan Sep 18 '12 at 16:07
Please, downvote this because this can do serious harm. @xenoterracide, please include the hints with big red letters from cxreg and correct your ansewer. It is clearly not the same thing. – Kjellski Mar 14 at 15:40

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.