6.9 Rebasing

Also see the git-rebase(1) manpage. For information on how to resolve conflicts that occur during rebases see the preceding section.

r (magit-rebase)

This transient prefix command binds the following suffix commands along with the appropriate infix arguments and displays them in a temporary buffer until a suffix is invoked.

When no rebase is in progress, then the transient features the following suffix commands.

Using one of these commands starts a rebase sequence. Git might then stop somewhere along the way, either because you told it to do so, or because applying a commit failed due to a conflict. When that happens, then the status buffer shows information about the rebase sequence which is in progress in a section similar to a log section. See Information About In-Progress Rebase.

For information about the upstream and the push-remote, see The Two Remotes.

r p (magit-rebase-onto-pushremote)

This command rebases the current branch onto its push-remote.

With a prefix argument or when the push-remote is either not configured or unusable, then let the user first configure the push-remote.

r u (magit-rebase-onto-upstream)

This command rebases the current branch onto its upstream branch.

With a prefix argument or when the upstream is either not configured or unusable, then let the user first configure the upstream.

r e (magit-rebase-branch)

This command rebases the current branch onto a branch read in the minibuffer. All commits that are reachable from head but not from the selected branch TARGET are being rebased.

r s (magit-rebase-subset)

This command starts a non-interactive rebase sequence to transfer commits from START to HEAD onto NEWBASE. START has to be selected from a list of recent commits.

By default Magit uses the --autostash argument, which causes uncommitted changes to be stored in a stash before the rebase begins. These changes are restored after the rebase completes and if possible the stash is removed. If the stash does not apply cleanly, then the stash is not removed. In case something goes wrong when resolving the conflicts, this allows you to start over.

Even though one of the actions is dedicated to interactive rebases, the transient also features the infix argument --interactive. This can be used to turn one of the other, non-interactive rebase variants into an interactive rebase.

For example if you want to clean up a feature branch and at the same time rebase it onto master, then you could use r-iu. But we recommend that you instead do that in two steps. First use ri to cleanup the feature branch, and then in a second step ru to rebase it onto master. That way if things turn out to be more complicated than you thought and/or you make a mistake and have to start over, then you only have to redo half the work.

Explicitly enabling --interactive won’t have an effect on the following commands as they always use that argument anyway, even if it is not enabled in the transient.

r i (magit-rebase-interactive)

This command starts an interactive rebase sequence.

r f (magit-rebase-autosquash)

This command combines squash and fixup commits with their intended targets.

By default only commits that are not reachable from the upstream branch are potentially squashed into. If no upstream is configured or with a prefix argument, the user is prompted for the first commit to potentially squash into.

r m (magit-rebase-edit-commit)

This command starts an interactive rebase sequence that lets the user edit a single older commit.

r w (magit-rebase-reword-commit)

This command starts an interactive rebase sequence that lets the user reword a single older commit.

r k (magit-rebase-remove-commit)

This command removes a single older commit using rebase.

When a rebase is in progress, then the transient instead features the following suffix commands.

r r (magit-rebase-continue)

This command restart the current rebasing operation.

In some cases this pops up a commit message buffer for you do edit. With a prefix argument the old message is reused as-is.

r s (magit-rebase-skip)

This command skips the current commit and restarts the current rebase operation.

r e (magit-rebase-edit)

This command lets the user edit the todo list of the current rebase operation.

r a (magit-rebase-abort)

This command aborts the current rebase operation, restoring the original branch.

6.9.1 Editing Rebase Sequences

C-c C-c (with-editor-finish)

Finish the current editing session by returning with exit code 0. Git then uses the rebase instructions it finds in the file.

C-c C-k (with-editor-cancel)

Cancel the current editing session by returning with exit code 1. Git then forgoes starting the rebase sequence.

RET (git-rebase-show-commit)

Show the commit on the current line in another buffer and select that buffer.

SPC (git-rebase-show-or-scroll-up)

Show the commit on the current line in another buffer without selecting that buffer. If the revision buffer is already visible in another window of the current frame, then instead scroll that window up.

DEL (git-rebase-show-or-scroll-down)

Show the commit on the current line in another buffer without selecting that buffer. If the revision buffer is already visible in another window of the current frame, then instead scroll that window down.

p (git-rebase-backward-line)

Move to previous line.

n (forward-line)

Move to next line.

M-p (git-rebase-move-line-up)

Move the current commit (or command) up.

M-n (git-rebase-move-line-down)

Move the current commit (or command) down.

r (git-rebase-reword)

Edit message of commit on current line.

e (git-rebase-edit)

Stop at the commit on the current line.

s (git-rebase-squash)

This command folds the commit on the current line into the previous commit, giving the user a change to manually merge the two messages.

S (git-rebase-squish)

This command folds the commit on the current line into the previous commit, discarding the message of the previous commit but giving the user a change to edit the final message, based on the message of the current commit.

This action’s indicator, shown in the list of commits, is fixup -c (with a lower-case c).

f (git-rebase-fixup)

This command folds the commit on the current line into the previous commit, using only the message of the previous commit as-is and discarding the message of the current commit.

F (git-rebase-alter)

This command folds the commit on the current into the previous commit, discarding the message of the previous commit and instead using the message of the current commit as-is.

This is like git-rebase-alter, except that it uses the other message. This is also like git-rebase-squish, except that it lets the user edit the message.

This action’s indicator, shown in the list of commits, is fixup -C (with a upper-case C).

k (git-rebase-kill-line)

Comment the current action line, or if it is already commented, then uncomment it.

c (git-rebase-pick)

Use commit on current line.

x (git-rebase-exec)

Insert a shell command to be run after the proceeding commit.

If there already is such a command on the current line, then edit that instead. With a prefix argument insert a new command even when there already is one on the current line. With empty input remove the command on the current line, if any.

b (git-rebase-break)

Insert a break action before the current line, instructing Git to return control to the user.

y (git-rebase-insert)

Read an arbitrary commit and insert it below current line.

C-x u (git-rebase-undo)

Undo some previous changes. Like undo but works in read-only buffers.

User Option: git-rebase-auto-advance

Whether to move to next line after changing a line.

User Option: git-rebase-show-instructions

Whether to show usage instructions inside the rebase buffer.

User Option: git-rebase-confirm-cancel

Whether confirmation is required to cancel.

When a rebase is performed with the --rebase-merges option, the sequence will include a few other types of actions and the following commands become relevant.

l (git-rebase-label)

This commands inserts a label action or edits the one at point.

t (git-rebase-reset)

This command inserts a reset action or edits the one at point. The prompt will offer the labels that are currently present in the buffer.

MM (git-rebase-merge)

The command inserts a merge action or edits the one at point. The prompt will offer the labels that are currently present in the buffer. Specifying a message to reuse via -c or -C is not supported; an editor will always be invoked for the merge.

Mt (git-rebase-merge-toggle-editmsg)

This command toggles between the -C and -c options of the merge action at point. These options both specify a commit whose message should be reused. The lower-case variant instructs Git to invoke the editor when creating the merge, allowing the user to edit the message.

6.9.2 Information About In-Progress Rebase

While a rebase sequence is in progress, the status buffer features a section that lists the commits that have already been applied as well as the commits that still have to be applied.

The commits are split in two halves. When rebase stops at a commit, either because the user has to deal with a conflict or because s/he explicitly requested that rebase stops at that commit, then point is placed on the commit that separates the two groups, i.e., on HEAD. The commits above it have not been applied yet, while the HEAD and the commits below it have already been applied. In between these two groups of applied and yet-to-be applied commits, there sometimes is a commit which has been dropped.

Each commit is prefixed with a word and these words are additionally shown in different colors to indicate the status of the commits.

The following colors are used:

Of course these colors are subject to the color-theme in use.

The following words are used:

Do not worry if you do not fully understand the above. That’s okay, you will acquire a good enough understanding through practice.

For other sequence operations such as cherry-picking, a similar section is displayed, but they lack some of the features described above, due to limitations in the git commands used to implement them. Most importantly these sequences only support "picking" a commit but not other actions such as "rewording", and they do not keep track of the commits which have already been applied.


Footnotes

(1)

The patch-id is a hash of the changes introduced by a commit. It differs from the hash of the commit itself, which is a hash of the result of applying that change (i.e., the resulting trees and blobs) as well as author and committer information, the commit message, and the hashes of the parents of the commit. The patch-id hash on the other hand is created only from the added and removed lines, even line numbers and whitespace changes are ignored when calculating this hash. The patch-ids of two commits can be used to answer the question "Do these commits make the same change?".