Table of Contents

What is the difference between a merge and a rebase?

About

merge and rebase are two commands that are designed to integrate changes between two branches (remote or local)

They have one difference:

Example

Imagine this commit history (log) 1) with a remote and a local branch where the commit in the remote branch will be integrated into the local branch.

- A - B - C - D - remote HEAD
    \
      E - F - G - local HEAD

After a merge, the commit history (log) will look like:

- A - B - C - D - remote HEAD
    \                         \
      E - F - G - local HEAD - new local HEAD

After a rebase, the commit history (log) will look like:

- A - B - C - D - remote HEAD - E' - F' - G' - local HEAD'

Advantage / Disadvantage

There is a trade-off: