Autogenerated manpages for v2.47.0-rc0-18-ge9356b
[git-manpages.git] / man1 / git-rebase.1
blob19475fc199bf3bbc2e882004667c69a57c170bfa
1 '\" t
2 .\"     Title: git-rebase
3 .\"    Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
4 .\" Generator: DocBook XSL Stylesheets v1.79.2 <http://docbook.sf.net/>
5 .\"      Date: 2024-09-30
6 .\"    Manual: Git Manual
7 .\"    Source: Git 2.47.0.rc0.18.ge9356ba3ea
8 .\"  Language: English
9 .\"
10 .TH "GIT\-REBASE" "1" "2024-09-30" "Git 2\&.47\&.0\&.rc0\&.18\&.ge" "Git Manual"
11 .\" -----------------------------------------------------------------
12 .\" * Define some portability stuff
13 .\" -----------------------------------------------------------------
14 .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
15 .\" http://bugs.debian.org/507673
16 .\" http://lists.gnu.org/archive/html/groff/2009-02/msg00013.html
17 .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
18 .ie \n(.g .ds Aq \(aq
19 .el       .ds Aq '
20 .\" -----------------------------------------------------------------
21 .\" * set default formatting
22 .\" -----------------------------------------------------------------
23 .\" disable hyphenation
24 .nh
25 .\" disable justification (adjust text to left margin only)
26 .ad l
27 .\" -----------------------------------------------------------------
28 .\" * MAIN CONTENT STARTS HERE *
29 .\" -----------------------------------------------------------------
30 .SH "NAME"
31 git-rebase \- Reapply commits on top of another base tip
32 .SH "SYNOPSIS"
33 .sp
34 .nf
35 \fIgit rebase\fR [\-i | \-\-interactive] [<options>] [\-\-exec <cmd>]
36         [\-\-onto <newbase> | \-\-keep\-base] [<upstream> [<branch>]]
37 \fIgit rebase\fR [\-i | \-\-interactive] [<options>] [\-\-exec <cmd>] [\-\-onto <newbase>]
38         \-\-root [<branch>]
39 \fIgit rebase\fR (\-\-continue|\-\-skip|\-\-abort|\-\-quit|\-\-edit\-todo|\-\-show\-current\-patch)
40 .fi
41 .SH "DESCRIPTION"
42 .sp
43 If \fB<branch>\fR is specified, \fBgit rebase\fR will perform an automatic \fBgit switch <branch>\fR before doing anything else\&. Otherwise it remains on the current branch\&.
44 .sp
45 If \fB<upstream>\fR is not specified, the upstream configured in \fBbranch\&.<name>\&.remote\fR and \fBbranch\&.<name>\&.merge\fR options will be used (see \fBgit-config\fR(1) for details) and the \fB\-\-fork\-point\fR option is assumed\&. If you are currently not on any branch or if the current branch does not have a configured upstream, the rebase will abort\&.
46 .sp
47 All changes made by commits in the current branch but that are not in \fB<upstream>\fR are saved to a temporary area\&. This is the same set of commits that would be shown by \fBgit log <upstream>\&.\&.HEAD\fR; or by \fBgit log \*(Aqfork_point\*(Aq\&.\&.HEAD\fR, if \fB\-\-fork\-point\fR is active (see the description on \fB\-\-fork\-point\fR below); or by \fBgit log HEAD\fR, if the \fB\-\-root\fR option is specified\&.
48 .sp
49 The current branch is reset to \fB<upstream>\fR or \fB<newbase>\fR if the \fB\-\-onto\fR option was supplied\&. This has the exact same effect as \fBgit reset \-\-hard <upstream>\fR (or \fB<newbase>\fR)\&. \fBORIG_HEAD\fR is set to point at the tip of the branch before the reset\&.
50 .if n \{\
51 .sp
52 .\}
53 .RS 4
54 .it 1 an-trap
55 .nr an-no-space-flag 1
56 .nr an-break-flag 1
57 .br
58 .ps +1
59 \fBNote\fR
60 .ps -1
61 .br
62 .sp
63 \fBORIG_HEAD\fR is not guaranteed to still point to the previous branch tip at the end of the rebase if other commands that write that pseudo\-ref (e\&.g\&. \fBgit reset\fR) are used during the rebase\&. The previous branch tip, however, is accessible using the reflog of the current branch (i\&.e\&. \fB@{1}\fR, see \fBgitrevisions\fR(7))\&.
64 .sp .5v
65 .RE
66 .sp
67 The commits that were previously saved into the temporary area are then reapplied to the current branch, one by one, in order\&. Note that any commits in \fBHEAD\fR which introduce the same textual changes as a commit in \fBHEAD\&.\&.<upstream>\fR are omitted (i\&.e\&., a patch already accepted upstream with a different commit message or timestamp will be skipped)\&.
68 .sp
69 It is possible that a merge failure will prevent this process from being completely automatic\&. You will have to resolve any such merge failure and run \fBgit rebase \-\-continue\fR\&. Another option is to bypass the commit that caused the merge failure with \fBgit rebase \-\-skip\fR\&. To check out the original \fB<branch>\fR and remove the \fB\&.git/rebase\-apply\fR working files, use the command \fBgit rebase \-\-abort\fR instead\&.
70 .sp
71 Assume the following history exists and the current branch is "topic":
72 .sp
73 .if n \{\
74 .RS 4
75 .\}
76 .nf
77           A\-\-\-B\-\-\-C topic
78          /
79     D\-\-\-E\-\-\-F\-\-\-G master
80 .fi
81 .if n \{\
82 .RE
83 .\}
84 .sp
85 From this point, the result of either of the following commands:
86 .sp
87 .if n \{\
88 .RS 4
89 .\}
90 .nf
91 git rebase master
92 git rebase master topic
93 .fi
94 .if n \{\
95 .RE
96 .\}
97 .sp
98 would be:
99 .sp
100 .if n \{\
101 .RS 4
104                   A\*(Aq\-\-B\*(Aq\-\-C\*(Aq topic
105                  /
106     D\-\-\-E\-\-\-F\-\-\-G master
108 .if n \{\
112 \fBNOTE:\fR The latter form is just a short\-hand of \fBgit checkout topic\fR followed by \fBgit rebase master\fR\&. When rebase exits \fBtopic\fR will remain the checked\-out branch\&.
114 If the upstream branch already contains a change you have made (e\&.g\&., because you mailed a patch which was applied upstream), then that commit will be skipped and warnings will be issued (if the \fImerge\fR backend is used)\&. For example, running \fBgit rebase master\fR on the following history (in which \fBA\*(Aq\fR and \fBA\fR introduce the same set of changes, but have different committer information):
116 .if n \{\
117 .RS 4
120           A\-\-\-B\-\-\-C topic
121          /
122     D\-\-\-E\-\-\-A\*(Aq\-\-\-F master
124 .if n \{\
128 will result in:
130 .if n \{\
131 .RS 4
134                    B\*(Aq\-\-\-C\*(Aq topic
135                   /
136     D\-\-\-E\-\-\-A\*(Aq\-\-\-F master
138 .if n \{\
142 Here is how you would transplant a topic branch based on one branch to another, to pretend that you forked the topic branch from the latter branch, using \fBrebase \-\-onto\fR\&.
144 First let\(cqs assume your \fItopic\fR is based on branch \fInext\fR\&. For example, a feature developed in \fItopic\fR depends on some functionality which is found in \fInext\fR\&.
146 .if n \{\
147 .RS 4
150     o\-\-\-o\-\-\-o\-\-\-o\-\-\-o  master
151          \e
152           o\-\-\-o\-\-\-o\-\-\-o\-\-\-o  next
153                            \e
154                             o\-\-\-o\-\-\-o  topic
156 .if n \{\
160 We want to make \fItopic\fR forked from branch \fImaster\fR; for example, because the functionality on which \fItopic\fR depends was merged into the more stable \fImaster\fR branch\&. We want our tree to look like this:
162 .if n \{\
163 .RS 4
166     o\-\-\-o\-\-\-o\-\-\-o\-\-\-o  master
167         |            \e
168         |             o\*(Aq\-\-o\*(Aq\-\-o\*(Aq  topic
169          \e
170           o\-\-\-o\-\-\-o\-\-\-o\-\-\-o  next
172 .if n \{\
176 We can get this using the following command:
178 .if n \{\
179 .RS 4
182 git rebase \-\-onto master next topic
184 .if n \{\
188 Another example of \-\-onto option is to rebase part of a branch\&. If we have the following situation:
190 .if n \{\
191 .RS 4
194                             H\-\-\-I\-\-\-J topicB
195                            /
196                   E\-\-\-F\-\-\-G  topicA
197                  /
198     A\-\-\-B\-\-\-C\-\-\-D  master
200 .if n \{\
204 then the command
206 .if n \{\
207 .RS 4
210 git rebase \-\-onto master topicA topicB
212 .if n \{\
216 would result in:
218 .if n \{\
219 .RS 4
222                  H\*(Aq\-\-I\*(Aq\-\-J\*(Aq  topicB
223                 /
224                 | E\-\-\-F\-\-\-G  topicA
225                 |/
226     A\-\-\-B\-\-\-C\-\-\-D  master
228 .if n \{\
232 This is useful when topicB does not depend on topicA\&.
234 A range of commits could also be removed with rebase\&. If we have the following situation:
236 .if n \{\
237 .RS 4
240     E\-\-\-F\-\-\-G\-\-\-H\-\-\-I\-\-\-J  topicA
242 .if n \{\
246 then the command
248 .if n \{\
249 .RS 4
252 git rebase \-\-onto topicA~5 topicA~3 topicA
254 .if n \{\
258 would result in the removal of commits F and G:
260 .if n \{\
261 .RS 4
264     E\-\-\-H\*(Aq\-\-\-I\*(Aq\-\-\-J\*(Aq  topicA
266 .if n \{\
270 This is useful if F and G were flawed in some way, or should not be part of topicA\&. Note that the argument to \fB\-\-onto\fR and the \fB<upstream>\fR parameter can be any valid commit\-ish\&.
272 In case of conflict, \fBgit rebase\fR will stop at the first problematic commit and leave conflict markers in the tree\&. You can use \fBgit diff\fR to locate the markers (<<<<<<) and make edits to resolve the conflict\&. For each file you edit, you need to tell Git that the conflict has been resolved, typically this would be done with
274 .if n \{\
275 .RS 4
278 git add <filename>
280 .if n \{\
284 After resolving the conflict manually and updating the index with the desired resolution, you can continue the rebasing process with
286 .if n \{\
287 .RS 4
290 git rebase \-\-continue
292 .if n \{\
296 Alternatively, you can undo the \fIgit rebase\fR with
298 .if n \{\
299 .RS 4
302 git rebase \-\-abort
304 .if n \{\
307 .SH "MODE OPTIONS"
309 The options in this section cannot be used with any other option, including not with each other:
311 \-\-continue
312 .RS 4
313 Restart the rebasing process after having resolved a merge conflict\&.
316 \-\-skip
317 .RS 4
318 Restart the rebasing process by skipping the current patch\&.
321 \-\-abort
322 .RS 4
323 Abort the rebase operation and reset HEAD to the original branch\&. If
324 \fB<branch>\fR
325 was provided when the rebase operation was started, then
326 \fBHEAD\fR
327 will be reset to
328 \fB<branch>\fR\&. Otherwise
329 \fBHEAD\fR
330 will be reset to where it was when the rebase operation was started\&.
333 \-\-quit
334 .RS 4
335 Abort the rebase operation but
336 \fBHEAD\fR
337 is not reset back to the original branch\&. The index and working tree are also left unchanged as a result\&. If a temporary stash entry was created using
338 \fB\-\-autostash\fR, it will be saved to the stash list\&.
341 \-\-edit\-todo
342 .RS 4
343 Edit the todo list during an interactive rebase\&.
346 \-\-show\-current\-patch
347 .RS 4
348 Show the current patch in an interactive rebase or when rebase is stopped because of conflicts\&. This is the equivalent of
349 \fBgit show REBASE_HEAD\fR\&.
351 .SH "OPTIONS"
353 \-\-onto <newbase>
354 .RS 4
355 Starting point at which to create the new commits\&. If the
356 \fB\-\-onto\fR
357 option is not specified, the starting point is
358 \fB<upstream>\fR\&. May be any valid commit, and not just an existing branch name\&.
360 As a special case, you may use "A\&.\&.\&.B" as a shortcut for the merge base of A and B if there is exactly one merge base\&. You can leave out at most one of A and B, in which case it defaults to HEAD\&.
363 \-\-keep\-base
364 .RS 4
365 Set the starting point at which to create the new commits to the merge base of
366 \fB<upstream>\fR
368 \fB<branch>\fR\&. Running
369 \fBgit rebase \-\-keep\-base <upstream> <branch>\fR
370 is equivalent to running
371 \fBgit rebase \-\-reapply\-cherry\-picks \-\-no\-fork\-point \-\-onto <upstream>\&.\&.\&.<branch> <upstream> <branch>\fR\&.
373 This option is useful in the case where one is developing a feature on top of an upstream branch\&. While the feature is being worked on, the upstream branch may advance and it may not be the best idea to keep rebasing on top of the upstream but to keep the base commit as\-is\&. As the base commit is unchanged this option implies
374 \fB\-\-reapply\-cherry\-picks\fR
375 to avoid losing commits\&.
377 Although both this option and
378 \fB\-\-fork\-point\fR
379 find the merge base between
380 \fB<upstream>\fR
382 \fB<branch>\fR, this option uses the merge base as the
383 \fIstarting point\fR
384 on which new commits will be created, whereas
385 \fB\-\-fork\-point\fR
386 uses the merge base to determine the
387 \fIset of commits\fR
388 which will be rebased\&.
390 See also INCOMPATIBLE OPTIONS below\&.
393 <upstream>
394 .RS 4
395 Upstream branch to compare against\&. May be any valid commit, not just an existing branch name\&. Defaults to the configured upstream for the current branch\&.
398 <branch>
399 .RS 4
400 Working branch; defaults to
401 \fBHEAD\fR\&.
404 \-\-apply
405 .RS 4
406 Use applying strategies to rebase (calling
407 \fBgit\-am\fR
408 internally)\&. This option may become a no\-op in the future once the merge backend handles everything the apply one does\&.
410 See also INCOMPATIBLE OPTIONS below\&.
413 \-\-empty=(drop|keep|stop)
414 .RS 4
415 How to handle commits that are not empty to start and are not clean cherry\-picks of any upstream commit, but which become empty after rebasing (because they contain a subset of already upstream changes):
417 \fBdrop\fR
418 .RS 4
419 The commit will be dropped\&. This is the default behavior\&.
422 \fBkeep\fR
423 .RS 4
424 The commit will be kept\&. This option is implied when
425 \fB\-\-exec\fR
426 is specified unless
427 \fB\-i\fR/\fB\-\-interactive\fR
428 is also specified\&.
431 \fBstop\fR, \fBask\fR
432 .RS 4
433 The rebase will halt when the commit is applied, allowing you to choose whether to drop it, edit files more, or just commit the empty changes\&. This option is implied when
434 \fB\-i\fR/\fB\-\-interactive\fR
435 is specified\&.
436 \fBask\fR
437 is a deprecated synonym of
438 \fBstop\fR\&.
441 Note that commits which start empty are kept (unless
442 \fB\-\-no\-keep\-empty\fR
443 is specified), and commits which are clean cherry\-picks (as determined by
444 \fBgit log \-\-cherry\-mark \&.\&.\&.\fR) are detected and dropped as a preliminary step (unless
445 \fB\-\-reapply\-cherry\-picks\fR
447 \fB\-\-keep\-base\fR
448 is passed)\&.
450 See also INCOMPATIBLE OPTIONS below\&.
453 \-\-no\-keep\-empty, \-\-keep\-empty
454 .RS 4
455 Do not keep commits that start empty before the rebase (i\&.e\&. that do not change anything from its parent) in the result\&. The default is to keep commits which start empty, since creating such commits requires passing the
456 \fB\-\-allow\-empty\fR
457 override flag to
458 \fBgit commit\fR, signifying that a user is very intentionally creating such a commit and thus wants to keep it\&.
460 Usage of this flag will probably be rare, since you can get rid of commits that start empty by just firing up an interactive rebase and removing the lines corresponding to the commits you don\(cqt want\&. This flag exists as a convenient shortcut, such as for cases where external tools generate many empty commits and you want them all removed\&.
462 For commits which do not start empty but become empty after rebasing, see the
463 \fB\-\-empty\fR
464 flag\&.
466 See also INCOMPATIBLE OPTIONS below\&.
469 \-\-reapply\-cherry\-picks, \-\-no\-reapply\-cherry\-picks
470 .RS 4
471 Reapply all clean cherry\-picks of any upstream commit instead of preemptively dropping them\&. (If these commits then become empty after rebasing, because they contain a subset of already upstream changes, the behavior towards them is controlled by the
472 \fB\-\-empty\fR
473 flag\&.)
475 In the absence of
476 \fB\-\-keep\-base\fR
477 (or if
478 \fB\-\-no\-reapply\-cherry\-picks\fR
479 is given), these commits will be automatically dropped\&. Because this necessitates reading all upstream commits, this can be expensive in repositories with a large number of upstream commits that need to be read\&. When using the
480 \fImerge\fR
481 backend, warnings will be issued for each dropped commit (unless
482 \fB\-\-quiet\fR
483 is given)\&. Advice will also be issued unless
484 \fBadvice\&.skippedCherryPicks\fR
485 is set to false (see
486 \fBgit-config\fR(1))\&.
488 \fB\-\-reapply\-cherry\-picks\fR
489 allows rebase to forgo reading all upstream commits, potentially improving performance\&.
491 See also INCOMPATIBLE OPTIONS below\&.
494 \-\-allow\-empty\-message
495 .RS 4
496 No\-op\&. Rebasing commits with an empty message used to fail and this option would override that behavior, allowing commits with empty messages to be rebased\&. Now commits with an empty message do not cause rebasing to halt\&.
498 See also INCOMPATIBLE OPTIONS below\&.
501 \-m, \-\-merge
502 .RS 4
503 Using merging strategies to rebase (default)\&.
505 Note that a rebase merge works by replaying each commit from the working branch on top of the
506 \fB<upstream>\fR
507 branch\&. Because of this, when a merge conflict happens, the side reported as
508 \fIours\fR
509 is the so\-far rebased series, starting with
510 \fB<upstream>\fR, and
511 \fItheirs\fR
512 is the working branch\&. In other words, the sides are swapped\&.
514 See also INCOMPATIBLE OPTIONS below\&.
517 \-s <strategy>, \-\-strategy=<strategy>
518 .RS 4
519 Use the given merge strategy, instead of the default
520 \fBort\fR\&. This implies
521 \fB\-\-merge\fR\&.
523 Because
524 \fBgit rebase\fR
525 replays each commit from the working branch on top of the
526 \fB<upstream>\fR
527 branch using the given strategy, using the
528 \fBours\fR
529 strategy simply empties all patches from the
530 \fB<branch>\fR, which makes little sense\&.
532 See also INCOMPATIBLE OPTIONS below\&.
535 \-X <strategy\-option>, \-\-strategy\-option=<strategy\-option>
536 .RS 4
537 Pass the <strategy\-option> through to the merge strategy\&. This implies
538 \fB\-\-merge\fR
539 and, if no strategy has been specified,
540 \fB\-s ort\fR\&. Note the reversal of
541 \fIours\fR
543 \fItheirs\fR
544 as noted above for the
545 \fB\-m\fR
546 option\&.
548 See also INCOMPATIBLE OPTIONS below\&.
551 \-\-rerere\-autoupdate, \-\-no\-rerere\-autoupdate
552 .RS 4
553 After the rerere mechanism reuses a recorded resolution on the current conflict to update the files in the working tree, allow it to also update the index with the result of resolution\&.
554 \fB\-\-no\-rerere\-autoupdate\fR
555 is a good way to double\-check what
556 \fBrerere\fR
557 did and catch potential mismerges, before committing the result to the index with a separate
558 \fBgit add\fR\&.
561 \-S[<keyid>], \-\-gpg\-sign[=<keyid>], \-\-no\-gpg\-sign
562 .RS 4
563 GPG\-sign commits\&. The
564 \fBkeyid\fR
565 argument is optional and defaults to the committer identity; if specified, it must be stuck to the option without a space\&.
566 \fB\-\-no\-gpg\-sign\fR
567 is useful to countermand both
568 \fBcommit\&.gpgSign\fR
569 configuration variable, and earlier
570 \fB\-\-gpg\-sign\fR\&.
573 \-q, \-\-quiet
574 .RS 4
575 Be quiet\&. Implies
576 \fB\-\-no\-stat\fR\&.
579 \-v, \-\-verbose
580 .RS 4
581 Be verbose\&. Implies
582 \fB\-\-stat\fR\&.
585 \-\-stat
586 .RS 4
587 Show a diffstat of what changed upstream since the last rebase\&. The diffstat is also controlled by the configuration option rebase\&.stat\&.
590 \-n, \-\-no\-stat
591 .RS 4
592 Do not show a diffstat as part of the rebase process\&.
595 \-\-no\-verify
596 .RS 4
597 This option bypasses the pre\-rebase hook\&. See also
598 \fBgithooks\fR(5)\&.
601 \-\-verify
602 .RS 4
603 Allows the pre\-rebase hook to run, which is the default\&. This option can be used to override
604 \fB\-\-no\-verify\fR\&. See also
605 \fBgithooks\fR(5)\&.
608 \-C<n>
609 .RS 4
610 Ensure at least
611 \fB<n>\fR
612 lines of surrounding context match before and after each change\&. When fewer lines of surrounding context exist they all must match\&. By default no context is ever ignored\&. Implies
613 \fB\-\-apply\fR\&.
615 See also INCOMPATIBLE OPTIONS below\&.
618 \-\-no\-ff, \-\-force\-rebase, \-f
619 .RS 4
620 Individually replay all rebased commits instead of fast\-forwarding over the unchanged ones\&. This ensures that the entire history of the rebased branch is composed of new commits\&.
622 You may find this helpful after reverting a topic branch merge, as this option recreates the topic branch with fresh commits so it can be remerged successfully without needing to "revert the reversion" (see the
623 \m[blue]\fBrevert\-a\-faulty\-merge How\-To\fR\m[]\&\s-2\u[1]\d\s+2
624 for details)\&.
627 \-\-fork\-point, \-\-no\-fork\-point
628 .RS 4
629 Use reflog to find a better common ancestor between
630 \fB<upstream>\fR
632 \fB<branch>\fR
633 when calculating which commits have been introduced by
634 \fB<branch>\fR\&.
636 When
637 \fB\-\-fork\-point\fR
638 is active,
639 \fIfork_point\fR
640 will be used instead of
641 \fB<upstream>\fR
642 to calculate the set of commits to rebase, where
643 \fIfork_point\fR
644 is the result of
645 \fBgit merge\-base \-\-fork\-point <upstream> <branch>\fR
646 command (see
647 \fBgit-merge-base\fR(1))\&. If
648 \fIfork_point\fR
649 ends up being empty, the
650 \fB<upstream>\fR
651 will be used as a fallback\&.
654 \fB<upstream>\fR
656 \fB\-\-keep\-base\fR
657 is given on the command line, then the default is
658 \fB\-\-no\-fork\-point\fR, otherwise the default is
659 \fB\-\-fork\-point\fR\&. See also
660 \fBrebase\&.forkpoint\fR
662 \fBgit-config\fR(1)\&.
664 If your branch was based on
665 \fB<upstream>\fR
667 \fB<upstream>\fR
668 was rewound and your branch contains commits which were dropped, this option can be used with
669 \fB\-\-keep\-base\fR
670 in order to drop those commits from your branch\&.
672 See also INCOMPATIBLE OPTIONS below\&.
675 \-\-ignore\-whitespace
676 .RS 4
677 Ignore whitespace differences when trying to reconcile differences\&. Currently, each backend implements an approximation of this behavior:
679 apply backend
680 .RS 4
681 When applying a patch, ignore changes in whitespace in context lines\&. Unfortunately, this means that if the "old" lines being replaced by the patch differ only in whitespace from the existing file, you will get a merge conflict instead of a successful patch application\&.
684 merge backend
685 .RS 4
686 Treat lines with only whitespace changes as unchanged when merging\&. Unfortunately, this means that any patch hunks that were intended to modify whitespace and nothing else will be dropped, even if the other side had no changes that conflicted\&.
690 \-\-whitespace=<option>
691 .RS 4
692 This flag is passed to the
693 \fBgit apply\fR
694 program (see
695 \fBgit-apply\fR(1)) that applies the patch\&. Implies
696 \fB\-\-apply\fR\&.
698 See also INCOMPATIBLE OPTIONS below\&.
701 \-\-committer\-date\-is\-author\-date
702 .RS 4
703 Instead of using the current time as the committer date, use the author date of the commit being rebased as the committer date\&. This option implies
704 \fB\-\-force\-rebase\fR\&.
707 \-\-ignore\-date, \-\-reset\-author\-date
708 .RS 4
709 Instead of using the author date of the original commit, use the current time as the author date of the rebased commit\&. This option implies
710 \fB\-\-force\-rebase\fR\&.
712 See also INCOMPATIBLE OPTIONS below\&.
715 \-\-signoff
716 .RS 4
717 Add a
718 \fBSigned\-off\-by\fR
719 trailer to all the rebased commits\&. Note that if
720 \fB\-\-interactive\fR
721 is given then only commits marked to be picked, edited or reworded will have the trailer added\&.
723 See also INCOMPATIBLE OPTIONS below\&.
726 \-i, \-\-interactive
727 .RS 4
728 Make a list of the commits which are about to be rebased\&. Let the user edit that list before rebasing\&. This mode can also be used to split commits (see SPLITTING COMMITS below)\&.
730 The commit list format can be changed by setting the configuration option rebase\&.instructionFormat\&. A customized instruction format will automatically have the commit hash prepended to the format\&.
732 See also INCOMPATIBLE OPTIONS below\&.
735 \-r, \-\-rebase\-merges[=(rebase\-cousins|no\-rebase\-cousins)], \-\-no\-rebase\-merges
736 .RS 4
737 By default, a rebase will simply drop merge commits from the todo list, and put the rebased commits into a single, linear branch\&. With
738 \fB\-\-rebase\-merges\fR, the rebase will instead try to preserve the branching structure within the commits that are to be rebased, by recreating the merge commits\&. Any resolved merge conflicts or manual amendments in these merge commits will have to be resolved/re\-applied manually\&.
739 \fB\-\-no\-rebase\-merges\fR
740 can be used to countermand both the
741 \fBrebase\&.rebaseMerges\fR
742 config option and a previous
743 \fB\-\-rebase\-merges\fR\&.
745 When rebasing merges, there are two modes:
746 \fBrebase\-cousins\fR
748 \fBno\-rebase\-cousins\fR\&. If the mode is not specified, it defaults to
749 \fBno\-rebase\-cousins\fR\&. In
750 \fBno\-rebase\-cousins\fR
751 mode, commits which do not have
752 \fB<upstream>\fR
753 as direct ancestor will keep their original branch point, i\&.e\&. commits that would be excluded by
754 \fBgit-log\fR(1)\*(Aqs
755 \fB\-\-ancestry\-path\fR
756 option will keep their original ancestry by default\&. In
757 \fBrebase\-cousins\fR
758 mode, such commits are instead rebased onto
759 \fB<upstream>\fR
761 \fB<onto>\fR, if specified)\&.
763 It is currently only possible to recreate the merge commits using the
764 \fBort\fR
765 merge strategy; different merge strategies can be used only via explicit
766 \fBexec git merge \-s <strategy> [\&.\&.\&.]\fR
767 commands\&.
769 See also REBASING MERGES and INCOMPATIBLE OPTIONS below\&.
772 \-x <cmd>, \-\-exec <cmd>
773 .RS 4
774 Append "exec <cmd>" after each line creating a commit in the final history\&.
775 \fB<cmd>\fR
776 will be interpreted as one or more shell commands\&. Any command that fails will interrupt the rebase, with exit code 1\&.
778 You may execute several commands by either using one instance of
779 \fB\-\-exec\fR
780 with several commands:
782 .if n \{\
783 .RS 4
786 git rebase \-i \-\-exec "cmd1 && cmd2 && \&.\&.\&."
788 .if n \{\
792 or by giving more than one
793 \fB\-\-exec\fR:
795 .if n \{\
796 .RS 4
799 git rebase \-i \-\-exec "cmd1" \-\-exec "cmd2" \-\-exec \&.\&.\&.
801 .if n \{\
806 \fB\-\-autosquash\fR
807 is used,
808 \fBexec\fR
809 lines will not be appended for the intermediate commits, and will only appear at the end of each squash/fixup series\&.
811 This uses the
812 \fB\-\-interactive\fR
813 machinery internally, but it can be run without an explicit
814 \fB\-\-interactive\fR\&.
816 See also INCOMPATIBLE OPTIONS below\&.
819 \-\-root
820 .RS 4
821 Rebase all commits reachable from
822 \fB<branch>\fR, instead of limiting them with an
823 \fB<upstream>\fR\&. This allows you to rebase the root commit(s) on a branch\&.
825 See also INCOMPATIBLE OPTIONS below\&.
828 \-\-autosquash, \-\-no\-autosquash
829 .RS 4
830 Automatically squash commits with specially formatted messages into previous commits being rebased\&. If a commit message starts with "squash! ", "fixup! " or "amend! ", the remainder of the subject line is taken as a commit specifier, which matches a previous commit if it matches the subject line or the hash of that commit\&. If no commit matches fully, matches of the specifier with the start of commit subjects are considered\&.
832 In the rebase todo list, the actions of squash, fixup and amend commits are changed from
833 \fBpick\fR
835 \fBsquash\fR,
836 \fBfixup\fR
838 \fBfixup \-C\fR, respectively, and they are moved right after the commit they modify\&. The
839 \fB\-\-interactive\fR
840 option can be used to review and edit the todo list before proceeding\&.
842 The recommended way to create commits with squash markers is by using the
843 \fB\-\-squash\fR,
844 \fB\-\-fixup\fR,
845 \fB\-\-fixup=amend:\fR
847 \fB\-\-fixup=reword:\fR
848 options of
849 \fBgit-commit\fR(1), which take the target commit as an argument and automatically fill in the subject line of the new commit from that\&.
851 Setting configuration variable
852 \fBrebase\&.autoSquash\fR
853 to true enables auto\-squashing by default for interactive rebase\&. The
854 \fB\-\-no\-autosquash\fR
855 option can be used to override that setting\&.
857 See also INCOMPATIBLE OPTIONS below\&.
860 \-\-autostash, \-\-no\-autostash
861 .RS 4
862 Automatically create a temporary stash entry before the operation begins, and apply it after the operation ends\&. This means that you can run rebase on a dirty worktree\&. However, use with care: the final stash application after a successful rebase might result in non\-trivial conflicts\&.
865 \-\-reschedule\-failed\-exec, \-\-no\-reschedule\-failed\-exec
866 .RS 4
867 Automatically reschedule
868 \fBexec\fR
869 commands that failed\&. This only makes sense in interactive mode (or when an
870 \fB\-\-exec\fR
871 option was provided)\&.
873 This option applies once a rebase is started\&. It is preserved for the whole rebase based on, in order, the command line option provided to the initial
874 \fBgit rebase\fR, the
875 \fBrebase\&.rescheduleFailedExec\fR
876 configuration (see
877 \fBgit-config\fR(1)
878 or "CONFIGURATION" below), or it defaults to false\&.
880 Recording this option for the whole rebase is a convenience feature\&. Otherwise an explicit
881 \fB\-\-no\-reschedule\-failed\-exec\fR
882 at the start would be overridden by the presence of a
883 \fBrebase\&.rescheduleFailedExec=true\fR
884 configuration when
885 \fBgit rebase \-\-continue\fR
886 is invoked\&. Currently, you cannot pass
887 \fB\-\-[no\-]reschedule\-failed\-exec\fR
889 \fBgit rebase \-\-continue\fR\&.
892 \-\-update\-refs, \-\-no\-update\-refs
893 .RS 4
894 Automatically force\-update any branches that point to commits that are being rebased\&. Any branches that are checked out in a worktree are not updated in this way\&.
896 If the configuration variable
897 \fBrebase\&.updateRefs\fR
898 is set, then this option can be used to override and disable this setting\&.
900 See also INCOMPATIBLE OPTIONS below\&.
902 .SH "INCOMPATIBLE OPTIONS"
904 The following options:
906 .RS 4
907 .ie n \{\
908 \h'-04'\(bu\h'+03'\c
910 .el \{\
911 .sp -1
912 .IP \(bu 2.3
914 \-\-apply
917 .RS 4
918 .ie n \{\
919 \h'-04'\(bu\h'+03'\c
921 .el \{\
922 .sp -1
923 .IP \(bu 2.3
925 \-\-whitespace
928 .RS 4
929 .ie n \{\
930 \h'-04'\(bu\h'+03'\c
932 .el \{\
933 .sp -1
934 .IP \(bu 2.3
939 are incompatible with the following options:
941 .RS 4
942 .ie n \{\
943 \h'-04'\(bu\h'+03'\c
945 .el \{\
946 .sp -1
947 .IP \(bu 2.3
949 \-\-merge
952 .RS 4
953 .ie n \{\
954 \h'-04'\(bu\h'+03'\c
956 .el \{\
957 .sp -1
958 .IP \(bu 2.3
960 \-\-strategy
963 .RS 4
964 .ie n \{\
965 \h'-04'\(bu\h'+03'\c
967 .el \{\
968 .sp -1
969 .IP \(bu 2.3
971 \-\-strategy\-option
974 .RS 4
975 .ie n \{\
976 \h'-04'\(bu\h'+03'\c
978 .el \{\
979 .sp -1
980 .IP \(bu 2.3
982 \-\-autosquash
985 .RS 4
986 .ie n \{\
987 \h'-04'\(bu\h'+03'\c
989 .el \{\
990 .sp -1
991 .IP \(bu 2.3
993 \-\-rebase\-merges
996 .RS 4
997 .ie n \{\
998 \h'-04'\(bu\h'+03'\c
1000 .el \{\
1001 .sp -1
1002 .IP \(bu 2.3
1004 \-\-interactive
1007 .RS 4
1008 .ie n \{\
1009 \h'-04'\(bu\h'+03'\c
1011 .el \{\
1012 .sp -1
1013 .IP \(bu 2.3
1015 \-\-exec
1018 .RS 4
1019 .ie n \{\
1020 \h'-04'\(bu\h'+03'\c
1022 .el \{\
1023 .sp -1
1024 .IP \(bu 2.3
1026 \-\-no\-keep\-empty
1029 .RS 4
1030 .ie n \{\
1031 \h'-04'\(bu\h'+03'\c
1033 .el \{\
1034 .sp -1
1035 .IP \(bu 2.3
1037 \-\-empty=
1040 .RS 4
1041 .ie n \{\
1042 \h'-04'\(bu\h'+03'\c
1044 .el \{\
1045 .sp -1
1046 .IP \(bu 2.3
1048 \-\-[no\-]reapply\-cherry\-picks when used without \-\-keep\-base
1051 .RS 4
1052 .ie n \{\
1053 \h'-04'\(bu\h'+03'\c
1055 .el \{\
1056 .sp -1
1057 .IP \(bu 2.3
1059 \-\-update\-refs
1062 .RS 4
1063 .ie n \{\
1064 \h'-04'\(bu\h'+03'\c
1066 .el \{\
1067 .sp -1
1068 .IP \(bu 2.3
1070 \-\-root when used without \-\-onto
1073 In addition, the following pairs of options are incompatible:
1075 .RS 4
1076 .ie n \{\
1077 \h'-04'\(bu\h'+03'\c
1079 .el \{\
1080 .sp -1
1081 .IP \(bu 2.3
1083 \-\-keep\-base and \-\-onto
1086 .RS 4
1087 .ie n \{\
1088 \h'-04'\(bu\h'+03'\c
1090 .el \{\
1091 .sp -1
1092 .IP \(bu 2.3
1094 \-\-keep\-base and \-\-root
1097 .RS 4
1098 .ie n \{\
1099 \h'-04'\(bu\h'+03'\c
1101 .el \{\
1102 .sp -1
1103 .IP \(bu 2.3
1105 \-\-fork\-point and \-\-root
1107 .SH "BEHAVIORAL DIFFERENCES"
1109 \fBgit rebase\fR has two primary backends: \fIapply\fR and \fImerge\fR\&. (The \fIapply\fR backend used to be known as the \fIam\fR backend, but the name led to confusion as it looks like a verb instead of a noun\&. Also, the \fImerge\fR backend used to be known as the interactive backend, but it is now used for non\-interactive cases as well\&. Both were renamed based on lower\-level functionality that underpinned each\&.) There are some subtle differences in how these two backends behave:
1110 .SS "Empty commits"
1112 The \fIapply\fR backend unfortunately drops intentionally empty commits, i\&.e\&. commits that started empty, though these are rare in practice\&. It also drops commits that become empty and has no option for controlling this behavior\&.
1114 The \fImerge\fR backend keeps intentionally empty commits by default (though with \fB\-i\fR they are marked as empty in the todo list editor, or they can be dropped automatically with \fB\-\-no\-keep\-empty\fR)\&.
1116 Similar to the apply backend, by default the merge backend drops commits that become empty unless \fB\-i\fR/\fB\-\-interactive\fR is specified (in which case it stops and asks the user what to do)\&. The merge backend also has an \fB\-\-empty=(drop|keep|stop)\fR option for changing the behavior of handling commits that become empty\&.
1117 .SS "Directory rename detection"
1119 Due to the lack of accurate tree information (arising from constructing fake ancestors with the limited information available in patches), directory rename detection is disabled in the \fIapply\fR backend\&. Disabled directory rename detection means that if one side of history renames a directory and the other adds new files to the old directory, then the new files will be left behind in the old directory without any warning at the time of rebasing that you may want to move these files into the new directory\&.
1121 Directory rename detection works with the \fImerge\fR backend to provide you warnings in such cases\&.
1122 .SS "Context"
1124 The \fIapply\fR backend works by creating a sequence of patches (by calling \fBformat\-patch\fR internally), and then applying the patches in sequence (calling \fBam\fR internally)\&. Patches are composed of multiple hunks, each with line numbers, a context region, and the actual changes\&. The line numbers have to be taken with some offset, since the other side will likely have inserted or deleted lines earlier in the file\&. The context region is meant to help find how to adjust the line numbers in order to apply the changes to the right lines\&. However, if multiple areas of the code have the same surrounding lines of context, the wrong one can be picked\&. There are real\-world cases where this has caused commits to be reapplied incorrectly with no conflicts reported\&. Setting \fBdiff\&.context\fR to a larger value may prevent such types of problems, but increases the chance of spurious conflicts (since it will require more lines of matching context to apply)\&.
1126 The \fImerge\fR backend works with a full copy of each relevant file, insulating it from these types of problems\&.
1127 .SS "Labelling of conflicts markers"
1129 When there are content conflicts, the merge machinery tries to annotate each side\(cqs conflict markers with the commits where the content came from\&. Since the \fIapply\fR backend drops the original information about the rebased commits and their parents (and instead generates new fake commits based off limited information in the generated patches), those commits cannot be identified; instead it has to fall back to a commit summary\&. Also, when \fBmerge\&.conflictStyle\fR is set to \fBdiff3\fR or \fBzdiff3\fR, the \fIapply\fR backend will use "constructed merge base" to label the content from the merge base, and thus provide no information about the merge base commit whatsoever\&.
1131 The \fImerge\fR backend works with the full commits on both sides of history and thus has no such limitations\&.
1132 .SS "Hooks"
1134 The \fIapply\fR backend has not traditionally called the post\-commit hook, while the \fImerge\fR backend has\&. Both have called the post\-checkout hook, though the \fImerge\fR backend has squelched its output\&. Further, both backends only call the post\-checkout hook with the starting point commit of the rebase, not the intermediate commits nor the final commit\&. In each case, the calling of these hooks was by accident of implementation rather than by design (both backends were originally implemented as shell scripts and happened to invoke other commands like \fBgit checkout\fR or \fBgit commit\fR that would call the hooks)\&. Both backends should have the same behavior, though it is not entirely clear which, if any, is correct\&. We will likely make rebase stop calling either of these hooks in the future\&.
1135 .SS "Interruptability"
1137 The \fIapply\fR backend has safety problems with an ill\-timed interrupt; if the user presses Ctrl\-C at the wrong time to try to abort the rebase, the rebase can enter a state where it cannot be aborted with a subsequent \fBgit rebase \-\-abort\fR\&. The \fImerge\fR backend does not appear to suffer from the same shortcoming\&. (See \m[blue]\fBhttps://lore\&.kernel\&.org/git/20200207132152\&.GC2868@szeder\&.dev/\fR\m[] for details\&.)
1138 .SS "Commit Rewording"
1140 When a conflict occurs while rebasing, rebase stops and asks the user to resolve\&. Since the user may need to make notable changes while resolving conflicts, after conflicts are resolved and the user has run \fBgit rebase \-\-continue\fR, the rebase should open an editor and ask the user to update the commit message\&. The \fImerge\fR backend does this, while the \fIapply\fR backend blindly applies the original commit message\&.
1141 .SS "Miscellaneous differences"
1143 There are a few more behavioral differences that most folks would probably consider inconsequential but which are mentioned for completeness:
1145 .RS 4
1146 .ie n \{\
1147 \h'-04'\(bu\h'+03'\c
1149 .el \{\
1150 .sp -1
1151 .IP \(bu 2.3
1153 Reflog: The two backends will use different wording when describing the changes made in the reflog, though both will make use of the word "rebase"\&.
1156 .RS 4
1157 .ie n \{\
1158 \h'-04'\(bu\h'+03'\c
1160 .el \{\
1161 .sp -1
1162 .IP \(bu 2.3
1164 Progress, informational, and error messages: The two backends provide slightly different progress and informational messages\&. Also, the apply backend writes error messages (such as "Your files would be overwritten\&...\:") to stdout, while the merge backend writes them to stderr\&.
1167 .RS 4
1168 .ie n \{\
1169 \h'-04'\(bu\h'+03'\c
1171 .el \{\
1172 .sp -1
1173 .IP \(bu 2.3
1175 State directories: The two backends keep their state in different directories under
1176 \fB\&.git/\fR
1178 .SH "MERGE STRATEGIES"
1180 The merge mechanism (\fBgit merge\fR and \fBgit pull\fR commands) allows the backend \fImerge strategies\fR to be chosen with \fB\-s\fR option\&. Some strategies can also take their own options, which can be passed by giving \fB\-X<option>\fR arguments to \fBgit merge\fR and/or \fBgit pull\fR\&.
1183 .RS 4
1184 This is the default merge strategy when pulling or merging one branch\&. This strategy can only resolve two heads using a 3\-way merge algorithm\&. When there is more than one common ancestor that can be used for 3\-way merge, it creates a merged tree of the common ancestors and uses that as the reference tree for the 3\-way merge\&. This has been reported to result in fewer merge conflicts without causing mismerges by tests done on actual merge commits taken from Linux 2\&.6 kernel development history\&. Additionally this strategy can detect and handle merges involving renames\&. It does not make use of detected copies\&. The name for this algorithm is an acronym ("Ostensibly Recursive\(cqs Twin") and came from the fact that it was written as a replacement for the previous default algorithm,
1185 \fBrecursive\fR\&.
1188 \fIort\fR
1189 strategy can take the following options:
1191 ours
1192 .RS 4
1193 This option forces conflicting hunks to be auto\-resolved cleanly by favoring
1194 \fIour\fR
1195 version\&. Changes from the other tree that do not conflict with our side are reflected in the merge result\&. For a binary file, the entire contents are taken from our side\&.
1197 This should not be confused with the
1198 \fIours\fR
1199 merge strategy, which does not even look at what the other tree contains at all\&. It discards everything the other tree did, declaring
1200 \fIour\fR
1201 history contains all that happened in it\&.
1204 theirs
1205 .RS 4
1206 This is the opposite of
1207 \fIours\fR; note that, unlike
1208 \fIours\fR, there is no
1209 \fItheirs\fR
1210 merge strategy to confuse this merge option with\&.
1213 ignore\-space\-change, ignore\-all\-space, ignore\-space\-at\-eol, ignore\-cr\-at\-eol
1214 .RS 4
1215 Treats lines with the indicated type of whitespace change as unchanged for the sake of a three\-way merge\&. Whitespace changes mixed with other changes to a line are not ignored\&. See also
1216 \fBgit-diff\fR(1)
1217 \fB\-b\fR,
1218 \fB\-w\fR,
1219 \fB\-\-ignore\-space\-at\-eol\fR, and
1220 \fB\-\-ignore\-cr\-at\-eol\fR\&.
1222 .RS 4
1223 .ie n \{\
1224 \h'-04'\(bu\h'+03'\c
1226 .el \{\
1227 .sp -1
1228 .IP \(bu 2.3
1231 \fItheir\fR
1232 version only introduces whitespace changes to a line,
1233 \fIour\fR
1234 version is used;
1237 .RS 4
1238 .ie n \{\
1239 \h'-04'\(bu\h'+03'\c
1241 .el \{\
1242 .sp -1
1243 .IP \(bu 2.3
1246 \fIour\fR
1247 version introduces whitespace changes but
1248 \fItheir\fR
1249 version includes a substantial change,
1250 \fItheir\fR
1251 version is used;
1254 .RS 4
1255 .ie n \{\
1256 \h'-04'\(bu\h'+03'\c
1258 .el \{\
1259 .sp -1
1260 .IP \(bu 2.3
1262 Otherwise, the merge proceeds in the usual way\&.
1266 renormalize
1267 .RS 4
1268 This runs a virtual check\-out and check\-in of all three stages of a file when resolving a three\-way merge\&. This option is meant to be used when merging branches with different clean filters or end\-of\-line normalization rules\&. See "Merging branches with differing checkin/checkout attributes" in
1269 \fBgitattributes\fR(5)
1270 for details\&.
1273 no\-renormalize
1274 .RS 4
1275 Disables the
1276 \fBrenormalize\fR
1277 option\&. This overrides the
1278 \fBmerge\&.renormalize\fR
1279 configuration variable\&.
1282 find\-renames[=<n>]
1283 .RS 4
1284 Turn on rename detection, optionally setting the similarity threshold\&. This is the default\&. This overrides the
1285 \fImerge\&.renames\fR
1286 configuration variable\&. See also
1287 \fBgit-diff\fR(1)
1288 \fB\-\-find\-renames\fR\&.
1291 rename\-threshold=<n>
1292 .RS 4
1293 Deprecated synonym for
1294 \fBfind\-renames=<n>\fR\&.
1297 subtree[=<path>]
1298 .RS 4
1299 This option is a more advanced form of
1300 \fIsubtree\fR
1301 strategy, where the strategy makes a guess on how two trees must be shifted to match with each other when merging\&. Instead, the specified path is prefixed (or stripped from the beginning) to make the shape of two trees to match\&.
1305 recursive
1306 .RS 4
1307 This can only resolve two heads using a 3\-way merge algorithm\&. When there is more than one common ancestor that can be used for 3\-way merge, it creates a merged tree of the common ancestors and uses that as the reference tree for the 3\-way merge\&. This has been reported to result in fewer merge conflicts without causing mismerges by tests done on actual merge commits taken from Linux 2\&.6 kernel development history\&. Additionally this can detect and handle merges involving renames\&. It does not make use of detected copies\&. This was the default strategy for resolving two heads from Git v0\&.99\&.9k until v2\&.33\&.0\&.
1310 \fIrecursive\fR
1311 strategy takes the same options as
1312 \fIort\fR\&. However, there are three additional options that
1313 \fIort\fR
1314 ignores (not documented above) that are potentially useful with the
1315 \fIrecursive\fR
1316 strategy:
1318 patience
1319 .RS 4
1320 Deprecated synonym for
1321 \fBdiff\-algorithm=patience\fR\&.
1324 diff\-algorithm=[patience|minimal|histogram|myers]
1325 .RS 4
1326 Use a different diff algorithm while merging, which can help avoid mismerges that occur due to unimportant matching lines (such as braces from distinct functions)\&. See also
1327 \fBgit-diff\fR(1)
1328 \fB\-\-diff\-algorithm\fR\&. Note that
1329 \fBort\fR
1330 specifically uses
1331 \fBdiff\-algorithm=histogram\fR, while
1332 \fBrecursive\fR
1333 defaults to the
1334 \fBdiff\&.algorithm\fR
1335 config setting\&.
1338 no\-renames
1339 .RS 4
1340 Turn off rename detection\&. This overrides the
1341 \fBmerge\&.renames\fR
1342 configuration variable\&. See also
1343 \fBgit-diff\fR(1)
1344 \fB\-\-no\-renames\fR\&.
1348 resolve
1349 .RS 4
1350 This can only resolve two heads (i\&.e\&. the current branch and another branch you pulled from) using a 3\-way merge algorithm\&. It tries to carefully detect criss\-cross merge ambiguities\&. It does not handle renames\&.
1353 octopus
1354 .RS 4
1355 This resolves cases with more than two heads, but refuses to do a complex merge that needs manual resolution\&. It is primarily meant to be used for bundling topic branch heads together\&. This is the default merge strategy when pulling or merging more than one branch\&.
1358 ours
1359 .RS 4
1360 This resolves any number of heads, but the resulting tree of the merge is always that of the current branch head, effectively ignoring all changes from all other branches\&. It is meant to be used to supersede old development history of side branches\&. Note that this is different from the \-Xours option to the
1361 \fIrecursive\fR
1362 merge strategy\&.
1365 subtree
1366 .RS 4
1367 This is a modified
1368 \fBort\fR
1369 strategy\&. When merging trees A and B, if B corresponds to a subtree of A, B is first adjusted to match the tree structure of A, instead of reading the trees at the same level\&. This adjustment is also done to the common ancestor tree\&.
1372 With the strategies that use 3\-way merge (including the default, \fIort\fR), if a change is made on both branches, but later reverted on one of the branches, that change will be present in the merged result; some people find this behavior confusing\&. It occurs because only the heads and the merge base are considered when performing a merge, not the individual commits\&. The merge algorithm therefore considers the reverted change as no change at all, and substitutes the changed version instead\&.
1373 .SH "NOTES"
1375 You should understand the implications of using \fBgit rebase\fR on a repository that you share\&. See also RECOVERING FROM UPSTREAM REBASE below\&.
1377 When the rebase is run, it will first execute a \fBpre\-rebase\fR hook if one exists\&. You can use this hook to do sanity checks and reject the rebase if it isn\(cqt appropriate\&. Please see the template \fBpre\-rebase\fR hook script for an example\&.
1379 Upon completion, \fB<branch>\fR will be the current branch\&.
1380 .SH "INTERACTIVE MODE"
1382 Rebasing interactively means that you have a chance to edit the commits which are rebased\&. You can reorder the commits, and you can remove them (weeding out bad or otherwise unwanted patches)\&.
1384 The interactive mode is meant for this type of workflow:
1386 .RS 4
1387 .ie n \{\
1388 \h'-04' 1.\h'+01'\c
1390 .el \{\
1391 .sp -1
1392 .IP "  1." 4.2
1394 have a wonderful idea
1397 .RS 4
1398 .ie n \{\
1399 \h'-04' 2.\h'+01'\c
1401 .el \{\
1402 .sp -1
1403 .IP "  2." 4.2
1405 hack on the code
1408 .RS 4
1409 .ie n \{\
1410 \h'-04' 3.\h'+01'\c
1412 .el \{\
1413 .sp -1
1414 .IP "  3." 4.2
1416 prepare a series for submission
1419 .RS 4
1420 .ie n \{\
1421 \h'-04' 4.\h'+01'\c
1423 .el \{\
1424 .sp -1
1425 .IP "  4." 4.2
1427 submit
1430 where point 2\&. consists of several instances of
1432 a) regular use
1434 .RS 4
1435 .ie n \{\
1436 \h'-04' 1.\h'+01'\c
1438 .el \{\
1439 .sp -1
1440 .IP "  1." 4.2
1442 finish something worthy of a commit
1445 .RS 4
1446 .ie n \{\
1447 \h'-04' 2.\h'+01'\c
1449 .el \{\
1450 .sp -1
1451 .IP "  2." 4.2
1453 commit
1456 b) independent fixup
1458 .RS 4
1459 .ie n \{\
1460 \h'-04' 1.\h'+01'\c
1462 .el \{\
1463 .sp -1
1464 .IP "  1." 4.2
1466 realize that something does not work
1469 .RS 4
1470 .ie n \{\
1471 \h'-04' 2.\h'+01'\c
1473 .el \{\
1474 .sp -1
1475 .IP "  2." 4.2
1477 fix that
1480 .RS 4
1481 .ie n \{\
1482 \h'-04' 3.\h'+01'\c
1484 .el \{\
1485 .sp -1
1486 .IP "  3." 4.2
1488 commit it
1491 Sometimes the thing fixed in b\&.2\&. cannot be amended to the not\-quite perfect commit it fixes, because that commit is buried deeply in a patch series\&. That is exactly what interactive rebase is for: use it after plenty of "a"s and "b"s, by rearranging and editing commits, and squashing multiple commits into one\&.
1493 Start it with the last commit you want to retain as\-is:
1495 .if n \{\
1496 .RS 4
1499 git rebase \-i <after\-this\-commit>
1501 .if n \{\
1505 An editor will be fired up with all the commits in your current branch (ignoring merge commits), which come after the given commit\&. You can reorder the commits in this list to your heart\(cqs content, and you can remove them\&. The list looks more or less like this:
1507 .if n \{\
1508 .RS 4
1511 pick deadbee The oneline of this commit
1512 pick fa1afe1 The oneline of the next commit
1513 \&.\&.\&.
1515 .if n \{\
1519 The oneline descriptions are purely for your pleasure; \fIgit rebase\fR will not look at them but at the commit names ("deadbee" and "fa1afe1" in this example), so do not delete or edit the names\&.
1521 By replacing the command "pick" with the command "edit", you can tell \fBgit rebase\fR to stop after applying that commit, so that you can edit the files and/or the commit message, amend the commit, and continue rebasing\&.
1523 To interrupt the rebase (just like an "edit" command would do, but without cherry\-picking any commit first), use the "break" command\&.
1525 If you just want to edit the commit message for a commit, replace the command "pick" with the command "reword"\&.
1527 To drop a commit, replace the command "pick" with "drop", or just delete the matching line\&.
1529 If you want to fold two or more commits into one, replace the command "pick" for the second and subsequent commits with "squash" or "fixup"\&. If the commits had different authors, the folded commit will be attributed to the author of the first commit\&. The suggested commit message for the folded commit is the concatenation of the first commit\(cqs message with those identified by "squash" commands, omitting the messages of commits identified by "fixup" commands, unless "fixup \-c" is used\&. In that case the suggested commit message is only the message of the "fixup \-c" commit, and an editor is opened allowing you to edit the message\&. The contents (patch) of the "fixup \-c" commit are still incorporated into the folded commit\&. If there is more than one "fixup \-c" commit, the message from the final one is used\&. You can also use "fixup \-C" to get the same behavior as "fixup \-c" except without opening an editor\&.
1531 \fBgit rebase\fR will stop when "pick" has been replaced with "edit" or when a command fails due to merge errors\&. When you are done editing and/or resolving conflicts you can continue with \fBgit rebase \-\-continue\fR\&.
1533 For example, if you want to reorder the last 5 commits, such that what was \fBHEAD~4\fR becomes the new \fBHEAD\fR\&. To achieve that, you would call \fBgit rebase\fR like this:
1535 .if n \{\
1536 .RS 4
1539 $ git rebase \-i HEAD~5
1541 .if n \{\
1545 And move the first patch to the end of the list\&.
1547 You might want to recreate merge commits, e\&.g\&. if you have a history like this:
1549 .if n \{\
1550 .RS 4
1553            X
1554             \e
1555          A\-\-\-M\-\-\-B
1556         /
1557 \-\-\-o\-\-\-O\-\-\-P\-\-\-Q
1559 .if n \{\
1563 Suppose you want to rebase the side branch starting at "A" to "Q"\&. Make sure that the current \fBHEAD\fR is "B", and call
1565 .if n \{\
1566 .RS 4
1569 $ git rebase \-i \-r \-\-onto Q O
1571 .if n \{\
1575 Reordering and editing commits usually creates untested intermediate steps\&. You may want to check that your history editing did not break anything by running a test, or at least recompiling at intermediate points in history by using the "exec" command (shortcut "x")\&. You may do so by creating a todo list like this one:
1577 .if n \{\
1578 .RS 4
1581 pick deadbee Implement feature XXX
1582 fixup f1a5c00 Fix to feature XXX
1583 exec make
1584 pick c0ffeee The oneline of the next commit
1585 edit deadbab The oneline of the commit after
1586 exec cd subdir; make test
1587 \&.\&.\&.
1589 .if n \{\
1593 The interactive rebase will stop when a command fails (i\&.e\&. exits with non\-0 status) to give you an opportunity to fix the problem\&. You can continue with \fBgit rebase \-\-continue\fR\&.
1595 The "exec" command launches the command in a shell (the default one, usually /bin/sh), so you can use shell features (like "cd", ">", ";" \&...\:)\&. The command is run from the root of the working tree\&.
1597 .if n \{\
1598 .RS 4
1601 $ git rebase \-i \-\-exec "make test"
1603 .if n \{\
1607 This command lets you check that intermediate commits are compilable\&. The todo list becomes like that:
1609 .if n \{\
1610 .RS 4
1613 pick 5928aea one
1614 exec make test
1615 pick 04d0fda two
1616 exec make test
1617 pick ba46169 three
1618 exec make test
1619 pick f4593f9 four
1620 exec make test
1622 .if n \{\
1625 .SH "SPLITTING COMMITS"
1627 In interactive mode, you can mark commits with the action "edit"\&. However, this does not necessarily mean that \fBgit rebase\fR expects the result of this edit to be exactly one commit\&. Indeed, you can undo the commit, or you can add other commits\&. This can be used to split a commit into two:
1629 .RS 4
1630 .ie n \{\
1631 \h'-04'\(bu\h'+03'\c
1633 .el \{\
1634 .sp -1
1635 .IP \(bu 2.3
1637 Start an interactive rebase with
1638 \fBgit rebase \-i <commit>^\fR, where
1639 \fB<commit>\fR
1640 is the commit you want to split\&. In fact, any commit range will do, as long as it contains that commit\&.
1643 .RS 4
1644 .ie n \{\
1645 \h'-04'\(bu\h'+03'\c
1647 .el \{\
1648 .sp -1
1649 .IP \(bu 2.3
1651 Mark the commit you want to split with the action "edit"\&.
1654 .RS 4
1655 .ie n \{\
1656 \h'-04'\(bu\h'+03'\c
1658 .el \{\
1659 .sp -1
1660 .IP \(bu 2.3
1662 When it comes to editing that commit, execute
1663 \fBgit reset HEAD^\fR\&. The effect is that the
1664 \fBHEAD\fR
1665 is rewound by one, and the index follows suit\&. However, the working tree stays the same\&.
1668 .RS 4
1669 .ie n \{\
1670 \h'-04'\(bu\h'+03'\c
1672 .el \{\
1673 .sp -1
1674 .IP \(bu 2.3
1676 Now add the changes to the index that you want to have in the first commit\&. You can use
1677 \fBgit add\fR
1678 (possibly interactively) or
1679 \fBgit gui\fR
1680 (or both) to do that\&.
1683 .RS 4
1684 .ie n \{\
1685 \h'-04'\(bu\h'+03'\c
1687 .el \{\
1688 .sp -1
1689 .IP \(bu 2.3
1691 Commit the now\-current index with whatever commit message is appropriate now\&.
1694 .RS 4
1695 .ie n \{\
1696 \h'-04'\(bu\h'+03'\c
1698 .el \{\
1699 .sp -1
1700 .IP \(bu 2.3
1702 Repeat the last two steps until your working tree is clean\&.
1705 .RS 4
1706 .ie n \{\
1707 \h'-04'\(bu\h'+03'\c
1709 .el \{\
1710 .sp -1
1711 .IP \(bu 2.3
1713 Continue the rebase with
1714 \fBgit rebase \-\-continue\fR\&.
1717 If you are not absolutely sure that the intermediate revisions are consistent (they compile, pass the testsuite, etc\&.) you should use \fBgit stash\fR to stash away the not\-yet\-committed changes after each commit, test, and amend the commit if fixes are necessary\&.
1718 .SH "RECOVERING FROM UPSTREAM REBASE"
1720 Rebasing (or any other form of rewriting) a branch that others have based work on is a bad idea: anyone downstream of it is forced to manually fix their history\&. This section explains how to do the fix from the downstream\(cqs point of view\&. The real fix, however, would be to avoid rebasing the upstream in the first place\&.
1722 To illustrate, suppose you are in a situation where someone develops a \fIsubsystem\fR branch, and you are working on a \fItopic\fR that is dependent on this \fIsubsystem\fR\&. You might end up with a history like the following:
1724 .if n \{\
1725 .RS 4
1728     o\-\-\-o\-\-\-o\-\-\-o\-\-\-o\-\-\-o\-\-\-o\-\-\-o  master
1729          \e
1730           o\-\-\-o\-\-\-o\-\-\-o\-\-\-o  subsystem
1731                            \e
1732                             *\-\-\-*\-\-\-*  topic
1734 .if n \{\
1738 If \fIsubsystem\fR is rebased against \fImaster\fR, the following happens:
1740 .if n \{\
1741 .RS 4
1744     o\-\-\-o\-\-\-o\-\-\-o\-\-\-o\-\-\-o\-\-\-o\-\-\-o  master
1745          \e                       \e
1746           o\-\-\-o\-\-\-o\-\-\-o\-\-\-o       o\*(Aq\-\-o\*(Aq\-\-o\*(Aq\-\-o\*(Aq\-\-o\*(Aq  subsystem
1747                            \e
1748                             *\-\-\-*\-\-\-*  topic
1750 .if n \{\
1754 If you now continue development as usual, and eventually merge \fItopic\fR to \fIsubsystem\fR, the commits from \fIsubsystem\fR will remain duplicated forever:
1756 .if n \{\
1757 .RS 4
1760     o\-\-\-o\-\-\-o\-\-\-o\-\-\-o\-\-\-o\-\-\-o\-\-\-o  master
1761          \e                       \e
1762           o\-\-\-o\-\-\-o\-\-\-o\-\-\-o       o\*(Aq\-\-o\*(Aq\-\-o\*(Aq\-\-o\*(Aq\-\-o\*(Aq\-\-M  subsystem
1763                            \e                         /
1764                             *\-\-\-*\-\-\-*\-\&.\&.\&.\&.\&.\&.\&.\&.\&.\&.\-*\-\-*  topic
1766 .if n \{\
1770 Such duplicates are generally frowned upon because they clutter up history, making it harder to follow\&. To clean things up, you need to transplant the commits on \fItopic\fR to the new \fIsubsystem\fR tip, i\&.e\&., rebase \fItopic\fR\&. This becomes a ripple effect: anyone downstream from \fItopic\fR is forced to rebase too, and so on!
1772 There are two kinds of fixes, discussed in the following subsections:
1774 Easy case: The changes are literally the same\&.
1775 .RS 4
1776 This happens if the
1777 \fIsubsystem\fR
1778 rebase was a simple rebase and had no conflicts\&.
1781 Hard case: The changes are not the same\&.
1782 .RS 4
1783 This happens if the
1784 \fIsubsystem\fR
1785 rebase had conflicts, or used
1786 \fB\-\-interactive\fR
1787 to omit, edit, squash, or fixup commits; or if the upstream used one of
1788 \fBcommit \-\-amend\fR,
1789 \fBreset\fR, or a full history rewriting command like
1790 \m[blue]\fB\fBfilter\-repo\fR\fR\m[]\&\s-2\u[2]\d\s+2\&.
1792 .SS "The easy case"
1794 Only works if the changes (patch IDs based on the diff contents) on \fIsubsystem\fR are literally the same before and after the rebase \fIsubsystem\fR did\&.
1796 In that case, the fix is easy because \fIgit rebase\fR knows to skip changes that are already present in the new upstream (unless \fB\-\-reapply\-cherry\-picks\fR is given)\&. So if you say (assuming you\(cqre on \fItopic\fR)
1798 .if n \{\
1799 .RS 4
1802     $ git rebase subsystem
1804 .if n \{\
1808 you will end up with the fixed history
1810 .if n \{\
1811 .RS 4
1814     o\-\-\-o\-\-\-o\-\-\-o\-\-\-o\-\-\-o\-\-\-o\-\-\-o  master
1815                                  \e
1816                                   o\*(Aq\-\-o\*(Aq\-\-o\*(Aq\-\-o\*(Aq\-\-o\*(Aq  subsystem
1817                                                    \e
1818                                                     *\-\-\-*\-\-\-*  topic
1820 .if n \{\
1823 .SS "The hard case"
1825 Things get more complicated if the \fIsubsystem\fR changes do not exactly correspond to the ones before the rebase\&.
1826 .if n \{\
1829 .RS 4
1830 .it 1 an-trap
1831 .nr an-no-space-flag 1
1832 .nr an-break-flag 1
1834 .ps +1
1835 \fBNote\fR
1836 .ps -1
1839 While an "easy case recovery" sometimes appears to be successful even in the hard case, it may have unintended consequences\&. For example, a commit that was removed via \fBgit rebase \-\-interactive\fR will be \fBresurrected\fR!
1840 .sp .5v
1843 The idea is to manually tell \fBgit rebase\fR "where the old \fIsubsystem\fR ended and your \fItopic\fR began", that is, what the old merge base between them was\&. You will have to find a way to name the last commit of the old \fIsubsystem\fR, for example:
1845 .RS 4
1846 .ie n \{\
1847 \h'-04'\(bu\h'+03'\c
1849 .el \{\
1850 .sp -1
1851 .IP \(bu 2.3
1853 With the
1854 \fIsubsystem\fR
1855 reflog: after
1856 \fBgit fetch\fR, the old tip of
1857 \fIsubsystem\fR
1858 is at
1859 \fBsubsystem@{1}\fR\&. Subsequent fetches will increase the number\&. (See
1860 \fBgit-reflog\fR(1)\&.)
1863 .RS 4
1864 .ie n \{\
1865 \h'-04'\(bu\h'+03'\c
1867 .el \{\
1868 .sp -1
1869 .IP \(bu 2.3
1871 Relative to the tip of
1872 \fItopic\fR: knowing that your
1873 \fItopic\fR
1874 has three commits, the old tip of
1875 \fIsubsystem\fR
1876 must be
1877 \fBtopic~3\fR\&.
1880 You can then transplant the old \fBsubsystem\&.\&.topic\fR to the new tip by saying (for the reflog case, and assuming you are on \fItopic\fR already):
1882 .if n \{\
1883 .RS 4
1886     $ git rebase \-\-onto subsystem subsystem@{1}
1888 .if n \{\
1892 The ripple effect of a "hard case" recovery is especially bad: \fIeveryone\fR downstream from \fItopic\fR will now have to perform a "hard case" recovery too!
1893 .SH "REBASING MERGES"
1895 The interactive rebase command was originally designed to handle individual patch series\&. As such, it makes sense to exclude merge commits from the todo list, as the developer may have merged the then\-current \fBmaster\fR while working on the branch, only to rebase all the commits onto \fBmaster\fR eventually (skipping the merge commits)\&.
1897 However, there are legitimate reasons why a developer may want to recreate merge commits: to keep the branch structure (or "commit topology") when working on multiple, inter\-related branches\&.
1899 In the following example, the developer works on a topic branch that refactors the way buttons are defined, and on another topic branch that uses that refactoring to implement a "Report a bug" button\&. The output of \fBgit log \-\-graph \-\-format=%s \-5\fR may look like this:
1901 .if n \{\
1902 .RS 4
1905 *   Merge branch \*(Aqreport\-a\-bug\*(Aq
1907 | * Add the feedback button
1908 * | Merge branch \*(Aqrefactor\-button\*(Aq
1909 |\e \e
1910 | |/
1911 | * Use the Button class for all buttons
1912 | * Extract a generic Button class from the DownloadButton one
1914 .if n \{\
1918 The developer might want to rebase those commits to a newer \fBmaster\fR while keeping the branch topology, for example when the first topic branch is expected to be integrated into \fBmaster\fR much earlier than the second one, say, to resolve merge conflicts with changes to the DownloadButton class that made it into \fBmaster\fR\&.
1920 This rebase can be performed using the \fB\-\-rebase\-merges\fR option\&. It will generate a todo list looking like this:
1922 .if n \{\
1923 .RS 4
1926 label onto
1928 # Branch: refactor\-button
1929 reset onto
1930 pick 123456 Extract a generic Button class from the DownloadButton one
1931 pick 654321 Use the Button class for all buttons
1932 label refactor\-button
1934 # Branch: report\-a\-bug
1935 reset refactor\-button # Use the Button class for all buttons
1936 pick abcdef Add the feedback button
1937 label report\-a\-bug
1939 reset onto
1940 merge \-C a1b2c3 refactor\-button # Merge \*(Aqrefactor\-button\*(Aq
1941 merge \-C 6f5e4d report\-a\-bug # Merge \*(Aqreport\-a\-bug\*(Aq
1943 .if n \{\
1947 In contrast to a regular interactive rebase, there are \fBlabel\fR, \fBreset\fR and \fBmerge\fR commands in addition to \fBpick\fR ones\&.
1949 The \fBlabel\fR command associates a label with the current HEAD when that command is executed\&. These labels are created as worktree\-local refs (\fBrefs/rewritten/<label>\fR) that will be deleted when the rebase finishes\&. That way, rebase operations in multiple worktrees linked to the same repository do not interfere with one another\&. If the \fBlabel\fR command fails, it is rescheduled immediately, with a helpful message how to proceed\&.
1951 The \fBreset\fR command resets the HEAD, index and worktree to the specified revision\&. It is similar to an \fBexec git reset \-\-hard <label>\fR, but refuses to overwrite untracked files\&. If the \fBreset\fR command fails, it is rescheduled immediately, with a helpful message how to edit the todo list (this typically happens when a \fBreset\fR command was inserted into the todo list manually and contains a typo)\&.
1953 The \fBmerge\fR command will merge the specified revision(s) into whatever is HEAD at that time\&. With \fB\-C <original\-commit>\fR, the commit message of the specified merge commit will be used\&. When the \fB\-C\fR is changed to a lower\-case \fB\-c\fR, the message will be opened in an editor after a successful merge so that the user can edit the message\&.
1955 If a \fBmerge\fR command fails for any reason other than merge conflicts (i\&.e\&. when the merge operation did not even start), it is rescheduled immediately\&.
1957 By default, the \fBmerge\fR command will use the \fBort\fR merge strategy for regular merges, and \fBoctopus\fR for octopus merges\&. One can specify a default strategy for all merges using the \fB\-\-strategy\fR argument when invoking rebase, or can override specific merges in the interactive list of commands by using an \fBexec\fR command to call \fBgit merge\fR explicitly with a \fB\-\-strategy\fR argument\&. Note that when calling \fBgit merge\fR explicitly like this, you can make use of the fact that the labels are worktree\-local refs (the ref \fBrefs/rewritten/onto\fR would correspond to the label \fBonto\fR, for example) in order to refer to the branches you want to merge\&.
1959 Note: the first command (\fBlabel onto\fR) labels the revision onto which the commits are rebased; The name \fBonto\fR is just a convention, as a nod to the \fB\-\-onto\fR option\&.
1961 It is also possible to introduce completely new merge commits from scratch by adding a command of the form \fBmerge <merge\-head>\fR\&. This form will generate a tentative commit message and always open an editor to let the user edit it\&. This can be useful e\&.g\&. when a topic branch turns out to address more than a single concern and wants to be split into two or even more topic branches\&. Consider this todo list:
1963 .if n \{\
1964 .RS 4
1967 pick 192837 Switch from GNU Makefiles to CMake
1968 pick 5a6c7e Document the switch to CMake
1969 pick 918273 Fix detection of OpenSSL in CMake
1970 pick afbecd http: add support for TLS v1\&.3
1971 pick fdbaec Fix detection of cURL in CMake on Windows
1973 .if n \{\
1977 The one commit in this list that is not related to CMake may very well have been motivated by working on fixing all those bugs introduced by switching to CMake, but it addresses a different concern\&. To split this branch into two topic branches, the todo list could be edited like this:
1979 .if n \{\
1980 .RS 4
1983 label onto
1985 pick afbecd http: add support for TLS v1\&.3
1986 label tlsv1\&.3
1988 reset onto
1989 pick 192837 Switch from GNU Makefiles to CMake
1990 pick 918273 Fix detection of OpenSSL in CMake
1991 pick fdbaec Fix detection of cURL in CMake on Windows
1992 pick 5a6c7e Document the switch to CMake
1993 label cmake
1995 reset onto
1996 merge tlsv1\&.3
1997 merge cmake
1999 .if n \{\
2002 .SH "CONFIGURATION"
2004 Everything below this line in this section is selectively included from the \fBgit-config\fR(1) documentation\&. The content is the same as what\(cqs found there:
2006 rebase\&.backend
2007 .RS 4
2008 Default backend to use for rebasing\&. Possible choices are
2009 \fIapply\fR
2011 \fImerge\fR\&. In the future, if the merge backend gains all remaining capabilities of the apply backend, this setting may become unused\&.
2014 rebase\&.stat
2015 .RS 4
2016 Whether to show a diffstat of what changed upstream since the last rebase\&. False by default\&.
2019 rebase\&.autoSquash
2020 .RS 4
2021 If set to true, enable the
2022 \fB\-\-autosquash\fR
2023 option of
2024 \fBgit-rebase\fR(1)
2025 by default for interactive mode\&. This can be overridden with the
2026 \fB\-\-no\-autosquash\fR
2027 option\&.
2030 rebase\&.autoStash
2031 .RS 4
2032 When set to true, automatically create a temporary stash entry before the operation begins, and apply it after the operation ends\&. This means that you can run rebase on a dirty worktree\&. However, use with care: the final stash application after a successful rebase might result in non\-trivial conflicts\&. This option can be overridden by the
2033 \fB\-\-no\-autostash\fR
2035 \fB\-\-autostash\fR
2036 options of
2037 \fBgit-rebase\fR(1)\&. Defaults to false\&.
2040 rebase\&.updateRefs
2041 .RS 4
2042 If set to true enable
2043 \fB\-\-update\-refs\fR
2044 option by default\&.
2047 rebase\&.missingCommitsCheck
2048 .RS 4
2049 If set to "warn", git rebase \-i will print a warning if some commits are removed (e\&.g\&. a line was deleted), however the rebase will still proceed\&. If set to "error", it will print the previous warning and stop the rebase,
2050 \fIgit rebase \-\-edit\-todo\fR
2051 can then be used to correct the error\&. If set to "ignore", no checking is done\&. To drop a commit without warning or error, use the
2052 \fBdrop\fR
2053 command in the todo list\&. Defaults to "ignore"\&.
2056 rebase\&.instructionFormat
2057 .RS 4
2058 A format string, as specified in
2059 \fBgit-log\fR(1), to be used for the todo list during an interactive rebase\&. The format will automatically have the commit hash prepended to the format\&.
2062 rebase\&.abbreviateCommands
2063 .RS 4
2064 If set to true,
2065 \fBgit rebase\fR
2066 will use abbreviated command names in the todo list resulting in something like this:
2068 .if n \{\
2069 .RS 4
2072         p deadbee The oneline of the commit
2073         p fa1afe1 The oneline of the next commit
2074         \&.\&.\&.
2076 .if n \{\
2080 instead of:
2082 .if n \{\
2083 .RS 4
2086         pick deadbee The oneline of the commit
2087         pick fa1afe1 The oneline of the next commit
2088         \&.\&.\&.
2090 .if n \{\
2094 Defaults to false\&.
2097 rebase\&.rescheduleFailedExec
2098 .RS 4
2099 Automatically reschedule
2100 \fBexec\fR
2101 commands that failed\&. This only makes sense in interactive mode (or when an
2102 \fB\-\-exec\fR
2103 option was provided)\&. This is the same as specifying the
2104 \fB\-\-reschedule\-failed\-exec\fR
2105 option\&.
2108 rebase\&.forkPoint
2109 .RS 4
2110 If set to false set
2111 \fB\-\-no\-fork\-point\fR
2112 option by default\&.
2115 rebase\&.rebaseMerges
2116 .RS 4
2117 Whether and how to set the
2118 \fB\-\-rebase\-merges\fR
2119 option by default\&. Can be
2120 \fBrebase\-cousins\fR,
2121 \fBno\-rebase\-cousins\fR, or a boolean\&. Setting to true or to
2122 \fBno\-rebase\-cousins\fR
2123 is equivalent to
2124 \fB\-\-rebase\-merges=no\-rebase\-cousins\fR, setting to
2125 \fBrebase\-cousins\fR
2126 is equivalent to
2127 \fB\-\-rebase\-merges=rebase\-cousins\fR, and setting to false is equivalent to
2128 \fB\-\-no\-rebase\-merges\fR\&. Passing
2129 \fB\-\-rebase\-merges\fR
2130 on the command line, with or without an argument, overrides any
2131 \fBrebase\&.rebaseMerges\fR
2132 configuration\&.
2135 rebase\&.maxLabelLength
2136 .RS 4
2137 When generating label names from commit subjects, truncate the names to this length\&. By default, the names are truncated to a little less than
2138 \fBNAME_MAX\fR
2139 (to allow e\&.g\&.
2140 \fB\&.lock\fR
2141 files to be written for the corresponding loose refs)\&.
2144 sequence\&.editor
2145 .RS 4
2146 Text editor used by
2147 \fBgit rebase \-i\fR
2148 for editing the rebase instruction file\&. The value is meant to be interpreted by the shell when it is used\&. It can be overridden by the
2149 \fBGIT_SEQUENCE_EDITOR\fR
2150 environment variable\&. When not configured, the default commit message editor is used instead\&.
2152 .SH "GIT"
2154 Part of the \fBgit\fR(1) suite
2155 .SH "NOTES"
2156 .IP " 1." 4
2157 revert-a-faulty-merge How-To
2158 .RS 4
2159 \%git-htmldocs/howto/revert-a-faulty-merge.html
2161 .IP " 2." 4
2162 \fBfilter-repo\fR
2163 .RS 4
2164 \%https://github.com/newren/git-filter-repo