What are the advantages of a rebase over a merge in git?

Posted by eSKay on Stack Overflow See other posts from Stack Overflow or by eSKay
Published on 2010-05-20T17:56:00Z Indexed on 2010/05/20 18:00 UTC
Read the original article Hit count: 186

Filed under:
|
|
|

In this article, the author explains rebasing with this diagram:

alt text

Rebase: If you have not yet published your branch, or have clearly communicated that others should not base their work on it, you have an alternative. You can rebase your branch, where instead of merging, your commit is replaced by another commit with a different parent, and your branch is moved there.

while a normal merge would have looked like this:

alt text

So, if you rebase, you are just losing a history state (which would be garbage collected sometime in the future). So, why would someone want to do a rebase at all? What am I missing here?

© Stack Overflow or respective owner

Related posts about git

Related posts about version-control