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

When does one use git rebase vs git merge?

Does one still need to merge after a successful rebase?

share|improve this question
1  
See: stackoverflow.com/questions/457927/… – TStamper Apr 29 '09 at 20:27
Added clarification on the two rebase scenario, as requested. – VonC Apr 29 '09 at 21:10
1  
I found this blog post to be a great answer: gitguru.com/2009/02/03/rebase-v-merge-in-git – Ztyx Jul 3 '12 at 9:08
This may also help with the bigger picture: stackoverflow.com/a/9204499/631619 – Michael Durrant Apr 14 at 21:01

7 Answers

Short Version

  • Merge takes all the changes in one branch and merge them into another branch in one commit.
  • Rebase says I want the point at which I branched to move to a new starting point

So when do you use either one?

Merge

  • Let's say you have created a branch for the purpose of developing a single feature. When you want to bring those changes back to master, you probably want merge (you don't care about maintaining all of the interim commits).

Rebase

  • A second scenario would be if you started doing some development and then another developer made an unrelated change. You probably want to pull and then rebase to base your changes from the current version from the repo.
share|improve this answer
28  
+1 I really like your "short version". – sleske Oct 9 '11 at 18:21
Yeah, it's very succinct. Great for reference – dmarges Nov 7 '12 at 16:22
Updated the layout for easier reading. – Michael Durrant Jan 5 at 18:21
1  
@Rob mentioned maintaining interim commits when merging. I believe by default merging branch B (a feature branch you've been working on) into branch M (the master branch) will create one commit in M for each commit that was made in B since the two diverged. But if you merge using the --squash option, all of the commits made on branch B will be "lumped together" and merged as a single commit on branch M, keeping the log on your master branch nice and clean. Squashing is probably what you want if you have numerous developers working independently and merging back into master. – spaaarky21 Jan 24 at 21:46
@Rob, your rebase explanation can use a little more explanation for people who don't have the concept of rebase down. Spaaarky21 just added some subtly to the whole thing with "squashing." – user148298 Mar 29 at 16:38

To complement my own answer mentioned by TSamper,

  • a rebase is quite often a good idea to do before a merge, because the idea is that you integrate in your branch Y the work of the branch B upon which you will merge.
    But again, before merging, you resolve any conflict in your branch (i.e.: "rebase", as in "replay my work in my branch starting from a recent point from the branch B)
    If done correctly, the subsequent merge from your branch to branch B can be fast-forward.

  • a merge impact directly the destination branch B, which means the merges better be trivial, otherwise that branch B can be long to get back to a stable state (time for you solve all the conflicts)


the point of merging after a rebase?

In the case that I describe, I rebase B onto my branch, just to have the opportunity to replay my work from a more recent point from B, but while staying into my branch.
In this case, a merge is still needed to bring my "replayed" work onto B.

The other scenario (described in Git Ready for instance), is to bring your work directly in B through a rebase (which does conserve all your nice commits, or even give you the opportunity to re-order them through an interactive rebase).
In that case (where you rebase while being in the B branch), you are right: no further merge is needed:

A git tree at default when we have not merged nor rebased

rebase1

we get by rebasing:

rebase3

That second scenario is all about: how do I get new-feature back into master.

My point, by describing the first rebase scenario, is to remind everyone that a rebase can also be used as a preliminary step to that (that being "get new-feature back into master").
You can use rebase to first bring master "in" the new-feature branch: the rebase will replay new-feature commits from the HEAD master, but still in the new-feature branch, effectively moving your branch starting point from an old master commit to HEAD-master.
That allows you to resolve any conflicts in your branch (meaning, in isolation, while allowing master to continue to evolve in parallel if your conflict resolution stage takes too long).
Then you can switch to master and merge new-feature (or rebase new-feature onto master if you want to preserve commits done in your new-feature branch).

So:

  • "rebase vs. merge" can be viewed as two ways to import a work on, say, master.
  • But "rebase then merge" can be a valid workflow to first resolve conflict in isolation, then bring back your work.
share|improve this answer
4  
merge after rebase is a trivial fast forward without having to resolve conflicts. – obecalp Apr 30 '09 at 19:32
3  
@obelcap: Indeed, this is kind of the idea: you take all the problem-conflict in your environment (rebase master within your new-feature branch), and then co master, merge new-feature: 1 pico-second (fast-forward) if master had no evolutions – VonC Apr 30 '09 at 21:29
8  
Rebase is also nice because once you do eventually merge your stuff back into master (which is trivial as already described) you have it sitting at the "top" of your commit history. On bigger projects where features may be written but merged several weeks later, you don't want to just merge them into the master because they get "stuffed" into the master way back in the history. Personally I like being able to do git log and see that recent feature right at the "top." Note the commit dates are preserved - rebase doesn't change that information. – Sean Schofield Sep 3 '09 at 14:11
1  
@Joe: mentally, you are saying "replay any of my changes (done in isolation in my private branch) on top of that other branch, but leave me in my private branch once the rebase is done". That is a good opportunity to clean-up the local history, avoiding "checkpoint commits", broken bisect and incorrect blame results. See "Git workflow": sandofsky.com/blog/git-workflow.html – VonC Aug 15 '11 at 17:57
2  
@scoarescoare the key is to see how you local changes are compatible on top of the latest upstream branch. If one of your commit introduces a conflict, you will see it right away. A merge introduce only one (merged) commit, which might trigger many conflict without an easy way to see which one, amongst your own local commits, did add said conflict. So in addition to a cleaner history, you get a more precise view of the changes you introduce, commit by commit (replayed by the rebase), as opposed to all the changes introduced by the upstream branch (dumped into one single merge). – VonC Jan 25 at 6:17
show 10 more comments

Merge means: Create a single new commit that merges my changes into the destination.

Rebase means: Create a whole new series of commits, using my current set of commits as hints. In other words, calculate what my changes would have looked like if I had started making them from the point I'm rebasing on to. After the rebase, therefore, you might need to re-test your changes and during the rebase, you would possibly have a few conflicts.

Given this, why would you rebase? Just to keep the development history clear. Let's say you're working on feature X and when you're done, you merge your changes in. The destination will now have a single commit that would say something along the lines of "Added feature X". Now, instead of merging, if you rebased and then merged, the destination development history would contain all the individual commits in a single logical progression. This makes reviewing changes later on much easier. Imagine how hard you'd find it to review the development history if 50 developers were merging various features all the time.

That said, if you have already pushed the branch you're working on upstream, you should not rebase, but merge instead. For branches that have not been pushed upstream, rebase, test and merge.

Another time you might want to rebase is when you want to get rid of commits from your branch before pushing upstream. For example: Commits that introduce some debugging code early on and other commits further on that clean that code up. The only way to do this is by performing an interactive rebase: git rebase -i <branch/commit/tag>

UPDATE: You also want to use rebase when you're using Git to interface to a version control system that doesn't support non-linear history (subversion for example). When using the git-svn bridge, it is very important that the changes you merge back into subversion are a sequential list of changes on top of the most recent changes in trunk. There are only two ways to do that: (1) Manually re-create the changes and (2) Using the rebase command, which is a lot faster.

UPDATE2 : One additional way to think of a rebase is that it enables a sort of mapping from your development style to the style accepted in the repository you're committing to. Let's say you like to commit in small, tiny chunks. You have one commit to fix a typo, one commit to get rid of unused code and so on. By the time you've finished what you need to do, you have a long series of commits. Now let's say the repository you're committing to encourages large commits, so for the work you're doing, one would expect one or maybe two commits. How do you take your string of commits and compress them to what is expected? You would use an interactive rebase and squash your tiny commits into fewer larger chunks. The same is true if the reverse was needed - if your style was a few large commits, but the repo demanded long strings of small commits. You would use a rebase to do that as well. If you had merged instead, you have now grafted your commit style onto the main repository. If there are a lot of developers, you can imagine how hard it would be to follow a history with several different commit styles after some time.

share|improve this answer
A merge with master could result in a fast forward. In a feature branch there may be some commits, which have minor bugs or dont't even compile. If you do only unit testing in a feature branch, some errors in integration my slip through. Before merging with master, integration tests are required and can show some bugs. If these are fixed, the feature could be integrated. As you don't wish to commit buggy code to master, a rebase seems neccessary in order to prevent an all-commits-fast-forward. – mbx Jul 15 '12 at 18:15

I experimented with a test repository and I finally I got it :) :)!

It's simple, with rebase you say to use another branch as new base for your work so...

If you have for example a branch master and you create a branch to implement a new feature, say you name it cool-feature of course the master branch is the base for your new feature.

Now at a certain point you want to add the new feature you implemented in the master branch, you could just switch to master and merge the cool-feature branch:

$git checkout master
$git merge cool-feature

but this way a new dummy commit is added, if you want to avoid spaghetti-history and of course be sexier you can rebase

$git checkout master
$git rebase cool-feature

Alternatively if you want to resolve conflicts in your topic branch as VonC suggested you can rebase you branch this way

$git checkout cool-feature
$git rebase master

and then merge it in master

$git checkout master
$git merge cool-feature

This time since the topic branch has the same commits of master plus the commits with the new feature the merge will be just a fast-forward ;)

Now the question is...is it correct? Is just rebase a smarter merge? Did I understand well or I was dreaming? It's difficult to find easy readings about rebase, I hope this will help and it's correct.

share|improve this answer
great summary complete with the relevant git commands. – Malcolm Sparks Dec 21 '12 at 10:33
Thanks @MalcolmSparks ...and Happy New Year ;)! – Aldo 'xoen' Giambelluca Jan 3 at 15:11

before merge/rebase:

A <- B <- C    [master]
^
 \
  D <- E       [branch]

after git merge master:

A <- B <- C
^         ^
 \         \
  D <- E <- F

after git rebase master:

A <- B <- C <- D' <- E'

(A, B, C, D, E and F are commits)

this example and much more well illustrated info about git can be found here: http://excess.org/article/2008/07/ogre-git-tutorial/

share|improve this answer

the pro git book as a really good explanation on the rebasing page

http://git-scm.com/book/en/Git-Branching-Rebasing

basically a merge will take 2 commits and combine them.

a rebase will go to the common ancestor on the 2 and incrementally apply the changes on top of each other. this makes for a 'cleaner' more linear history.

but when you rebase you abandon previous commits and create new ones. so you should never rebase a repo that is public. the other people working on the repo will hate you.

for that reason alone i almost exclusivly merge. 99% of the time my branches dont differ that much, so if there are conflicts it's only in one or two places.

share|improve this answer

http://www.jarrodspillers.com/2009/08/19/git-merge-vs-git-rebase-avoiding-rebase-hell/

The above link answer these question about merge VS --rebase How exactly does rebase differ from merge? When/Why should you use it instead of a merge? When should you absolutely not use it?

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.