Autogenerated manpages for v2.44.0-53-g0f9d4
[git-manpages.git] / man1 / git-rebase.1
blobba3b8ca72b48375383e410a550f9d665c4f13818
1 '\" t
2 .\"     Title: git-rebase
3 .\"    Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
4 .\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
5 .\"      Date: 2024-02-27
6 .\"    Manual: Git Manual
7 .\"    Source: Git 2.44.0.53.g0f9d4d28b7
8 .\"  Language: English
9 .\"
10 .TH "GIT\-REBASE" "1" "2024\-02\-27" "Git 2\&.44\&.0\&.53\&.g0f9d4d2" "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 .sp
42 .SH "DESCRIPTION"
43 .sp
44 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\&.
45 .sp
46 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\&.
47 .sp
48 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\&.
49 .sp
50 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\&.
51 .if n \{\
52 .sp
53 .\}
54 .RS 4
55 .it 1 an-trap
56 .nr an-no-space-flag 1
57 .nr an-break-flag 1
58 .br
59 .ps +1
60 \fBNote\fR
61 .ps -1
62 .br
63 .sp
64 \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))\&.
65 .sp .5v
66 .RE
67 .sp
68 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)\&.
69 .sp
70 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\&.
71 .sp
72 Assume the following history exists and the current branch is "topic":
73 .sp
74 .if n \{\
75 .RS 4
76 .\}
77 .nf
78           A\-\-\-B\-\-\-C topic
79          /
80     D\-\-\-E\-\-\-F\-\-\-G master
81 .fi
82 .if n \{\
83 .RE
84 .\}
85 .sp
86 .sp
87 From this point, the result of either of the following commands:
88 .sp
89 .if n \{\
90 .RS 4
91 .\}
92 .nf
93 git rebase master
94 git rebase master topic
95 .fi
96 .if n \{\
97 .RE
98 .\}
99 .sp
100 would be:
102 .if n \{\
103 .RS 4
106                   A\*(Aq\-\-B\*(Aq\-\-C\*(Aq topic
107                  /
108     D\-\-\-E\-\-\-F\-\-\-G master
110 .if n \{\
115 \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\&.
117 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):
119 .if n \{\
120 .RS 4
123           A\-\-\-B\-\-\-C topic
124          /
125     D\-\-\-E\-\-\-A\*(Aq\-\-\-F master
127 .if n \{\
132 will result in:
134 .if n \{\
135 .RS 4
138                    B\*(Aq\-\-\-C\*(Aq topic
139                   /
140     D\-\-\-E\-\-\-A\*(Aq\-\-\-F master
142 .if n \{\
147 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\&.
149 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\&.
151 .if n \{\
152 .RS 4
155     o\-\-\-o\-\-\-o\-\-\-o\-\-\-o  master
156          \e
157           o\-\-\-o\-\-\-o\-\-\-o\-\-\-o  next
158                            \e
159                             o\-\-\-o\-\-\-o  topic
161 .if n \{\
166 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:
168 .if n \{\
169 .RS 4
172     o\-\-\-o\-\-\-o\-\-\-o\-\-\-o  master
173         |            \e
174         |             o\*(Aq\-\-o\*(Aq\-\-o\*(Aq  topic
175          \e
176           o\-\-\-o\-\-\-o\-\-\-o\-\-\-o  next
178 .if n \{\
183 We can get this using the following command:
185 .if n \{\
186 .RS 4
189 git rebase \-\-onto master next topic
191 .if n \{\
195 Another example of \-\-onto option is to rebase part of a branch\&. If we have the following situation:
197 .if n \{\
198 .RS 4
201                             H\-\-\-I\-\-\-J topicB
202                            /
203                   E\-\-\-F\-\-\-G  topicA
204                  /
205     A\-\-\-B\-\-\-C\-\-\-D  master
207 .if n \{\
212 then the command
214 .if n \{\
215 .RS 4
218 git rebase \-\-onto master topicA topicB
220 .if n \{\
224 would result in:
226 .if n \{\
227 .RS 4
230                  H\*(Aq\-\-I\*(Aq\-\-J\*(Aq  topicB
231                 /
232                 | E\-\-\-F\-\-\-G  topicA
233                 |/
234     A\-\-\-B\-\-\-C\-\-\-D  master
236 .if n \{\
241 This is useful when topicB does not depend on topicA\&.
243 A range of commits could also be removed with rebase\&. If we have the following situation:
245 .if n \{\
246 .RS 4
249     E\-\-\-F\-\-\-G\-\-\-H\-\-\-I\-\-\-J  topicA
251 .if n \{\
256 then the command
258 .if n \{\
259 .RS 4
262 git rebase \-\-onto topicA~5 topicA~3 topicA
264 .if n \{\
268 would result in the removal of commits F and G:
270 .if n \{\
271 .RS 4
274     E\-\-\-H\*(Aq\-\-\-I\*(Aq\-\-\-J\*(Aq  topicA
276 .if n \{\
281 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\&.
283 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
285 .if n \{\
286 .RS 4
289 git add <filename>
291 .if n \{\
295 After resolving the conflict manually and updating the index with the desired resolution, you can continue the rebasing process with
297 .if n \{\
298 .RS 4
301 git rebase \-\-continue
303 .if n \{\
307 Alternatively, you can undo the \fIgit rebase\fR with
309 .if n \{\
310 .RS 4
313 git rebase \-\-abort
315 .if n \{\
318 .SH "MODE OPTIONS"
320 The options in this section cannot be used with any other option, including not with each other:
322 \-\-continue
323 .RS 4
324 Restart the rebasing process after having resolved a merge conflict\&.
327 \-\-skip
328 .RS 4
329 Restart the rebasing process by skipping the current patch\&.
332 \-\-abort
333 .RS 4
334 Abort the rebase operation and reset HEAD to the original branch\&. If
335 \fB<branch>\fR
336 was provided when the rebase operation was started, then
337 \fBHEAD\fR
338 will be reset to
339 \fB<branch>\fR\&. Otherwise
340 \fBHEAD\fR
341 will be reset to where it was when the rebase operation was started\&.
344 \-\-quit
345 .RS 4
346 Abort the rebase operation but
347 \fBHEAD\fR
348 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
349 \fB\-\-autostash\fR, it will be saved to the stash list\&.
352 \-\-edit\-todo
353 .RS 4
354 Edit the todo list during an interactive rebase\&.
357 \-\-show\-current\-patch
358 .RS 4
359 Show the current patch in an interactive rebase or when rebase is stopped because of conflicts\&. This is the equivalent of
360 \fBgit show REBASE_HEAD\fR\&.
362 .SH "OPTIONS"
364 \-\-onto <newbase>
365 .RS 4
366 Starting point at which to create the new commits\&. If the
367 \fB\-\-onto\fR
368 option is not specified, the starting point is
369 \fB<upstream>\fR\&. May be any valid commit, and not just an existing branch name\&.
371 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\&.
374 \-\-keep\-base
375 .RS 4
376 Set the starting point at which to create the new commits to the merge base of
377 \fB<upstream>\fR
379 \fB<branch>\fR\&. Running
380 \fBgit rebase \-\-keep\-base <upstream> <branch>\fR
381 is equivalent to running
382 \fBgit rebase \-\-reapply\-cherry\-picks \-\-no\-fork\-point \-\-onto <upstream>\&.\&.\&.<branch> <upstream> <branch>\fR\&.
384 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
385 \fB\-\-reapply\-cherry\-picks\fR
386 to avoid losing commits\&.
388 Although both this option and
389 \fB\-\-fork\-point\fR
390 find the merge base between
391 \fB<upstream>\fR
393 \fB<branch>\fR, this option uses the merge base as the
394 \fIstarting point\fR
395 on which new commits will be created, whereas
396 \fB\-\-fork\-point\fR
397 uses the merge base to determine the
398 \fIset of commits\fR
399 which will be rebased\&.
401 See also INCOMPATIBLE OPTIONS below\&.
404 <upstream>
405 .RS 4
406 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\&.
409 <branch>
410 .RS 4
411 Working branch; defaults to
412 \fBHEAD\fR\&.
415 \-\-apply
416 .RS 4
417 Use applying strategies to rebase (calling
418 \fBgit\-am\fR
419 internally)\&. This option may become a no\-op in the future once the merge backend handles everything the apply one does\&.
421 See also INCOMPATIBLE OPTIONS below\&.
424 \-\-empty=(drop|keep|ask)
425 .RS 4
426 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)\&. With drop (the default), commits that become empty are dropped\&. With keep, such commits are kept\&. With ask (implied by
427 \fB\-\-interactive\fR), the rebase will halt when an empty commit is applied allowing you to choose whether to drop it, edit files more, or just commit the empty changes\&. Other options, like
428 \fB\-\-exec\fR, will use the default of drop unless
429 \fB\-i\fR/\fB\-\-interactive\fR
430 is explicitly specified\&.
432 Note that commits which start empty are kept (unless
433 \fB\-\-no\-keep\-empty\fR
434 is specified), and commits which are clean cherry\-picks (as determined by
435 \fBgit log \-\-cherry\-mark \&.\&.\&.\fR) are detected and dropped as a preliminary step (unless
436 \fB\-\-reapply\-cherry\-picks\fR
438 \fB\-\-keep\-base\fR
439 is passed)\&.
441 See also INCOMPATIBLE OPTIONS below\&.
444 \-\-no\-keep\-empty, \-\-keep\-empty
445 .RS 4
446 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
447 \fB\-\-allow\-empty\fR
448 override flag to
449 \fBgit commit\fR, signifying that a user is very intentionally creating such a commit and thus wants to keep it\&.
451 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\&.
453 For commits which do not start empty but become empty after rebasing, see the
454 \fB\-\-empty\fR
455 flag\&.
457 See also INCOMPATIBLE OPTIONS below\&.
460 \-\-reapply\-cherry\-picks, \-\-no\-reapply\-cherry\-picks
461 .RS 4
462 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
463 \fB\-\-empty\fR
464 flag\&.)
466 In the absence of
467 \fB\-\-keep\-base\fR
468 (or if
469 \fB\-\-no\-reapply\-cherry\-picks\fR
470 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
471 \fImerge\fR
472 backend, warnings will be issued for each dropped commit (unless
473 \fB\-\-quiet\fR
474 is given)\&. Advice will also be issued unless
475 \fBadvice\&.skippedCherryPicks\fR
476 is set to false (see
477 \fBgit-config\fR(1))\&.
479 \fB\-\-reapply\-cherry\-picks\fR
480 allows rebase to forgo reading all upstream commits, potentially improving performance\&.
482 See also INCOMPATIBLE OPTIONS below\&.
485 \-\-allow\-empty\-message
486 .RS 4
487 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\&.
489 See also INCOMPATIBLE OPTIONS below\&.
492 \-m, \-\-merge
493 .RS 4
494 Using merging strategies to rebase (default)\&.
496 Note that a rebase merge works by replaying each commit from the working branch on top of the
497 \fB<upstream>\fR
498 branch\&. Because of this, when a merge conflict happens, the side reported as
499 \fIours\fR
500 is the so\-far rebased series, starting with
501 \fB<upstream>\fR, and
502 \fItheirs\fR
503 is the working branch\&. In other words, the sides are swapped\&.
505 See also INCOMPATIBLE OPTIONS below\&.
508 \-s <strategy>, \-\-strategy=<strategy>
509 .RS 4
510 Use the given merge strategy, instead of the default
511 \fBort\fR\&. This implies
512 \fB\-\-merge\fR\&.
514 Because
515 \fBgit rebase\fR
516 replays each commit from the working branch on top of the
517 \fB<upstream>\fR
518 branch using the given strategy, using the
519 \fBours\fR
520 strategy simply empties all patches from the
521 \fB<branch>\fR, which makes little sense\&.
523 See also INCOMPATIBLE OPTIONS below\&.
526 \-X <strategy\-option>, \-\-strategy\-option=<strategy\-option>
527 .RS 4
528 Pass the <strategy\-option> through to the merge strategy\&. This implies
529 \fB\-\-merge\fR
530 and, if no strategy has been specified,
531 \fB\-s ort\fR\&. Note the reversal of
532 \fIours\fR
534 \fItheirs\fR
535 as noted above for the
536 \fB\-m\fR
537 option\&.
539 See also INCOMPATIBLE OPTIONS below\&.
542 \-\-rerere\-autoupdate, \-\-no\-rerere\-autoupdate
543 .RS 4
544 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\&.
545 \fB\-\-no\-rerere\-autoupdate\fR
546 is a good way to double\-check what
547 \fBrerere\fR
548 did and catch potential mismerges, before committing the result to the index with a separate
549 \fBgit add\fR\&.
552 \-S[<keyid>], \-\-gpg\-sign[=<keyid>], \-\-no\-gpg\-sign
553 .RS 4
554 GPG\-sign commits\&. The
555 \fBkeyid\fR
556 argument is optional and defaults to the committer identity; if specified, it must be stuck to the option without a space\&.
557 \fB\-\-no\-gpg\-sign\fR
558 is useful to countermand both
559 \fBcommit\&.gpgSign\fR
560 configuration variable, and earlier
561 \fB\-\-gpg\-sign\fR\&.
564 \-q, \-\-quiet
565 .RS 4
566 Be quiet\&. Implies
567 \fB\-\-no\-stat\fR\&.
570 \-v, \-\-verbose
571 .RS 4
572 Be verbose\&. Implies
573 \fB\-\-stat\fR\&.
576 \-\-stat
577 .RS 4
578 Show a diffstat of what changed upstream since the last rebase\&. The diffstat is also controlled by the configuration option rebase\&.stat\&.
581 \-n, \-\-no\-stat
582 .RS 4
583 Do not show a diffstat as part of the rebase process\&.
586 \-\-no\-verify
587 .RS 4
588 This option bypasses the pre\-rebase hook\&. See also
589 \fBgithooks\fR(5)\&.
592 \-\-verify
593 .RS 4
594 Allows the pre\-rebase hook to run, which is the default\&. This option can be used to override
595 \fB\-\-no\-verify\fR\&. See also
596 \fBgithooks\fR(5)\&.
599 \-C<n>
600 .RS 4
601 Ensure at least
602 \fB<n>\fR
603 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
604 \fB\-\-apply\fR\&.
606 See also INCOMPATIBLE OPTIONS below\&.
609 \-\-no\-ff, \-\-force\-rebase, \-f
610 .RS 4
611 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\&.
613 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
614 \m[blue]\fBrevert\-a\-faulty\-merge How\-To\fR\m[]\&\s-2\u[1]\d\s+2
615 for details)\&.
618 \-\-fork\-point, \-\-no\-fork\-point
619 .RS 4
620 Use reflog to find a better common ancestor between
621 \fB<upstream>\fR
623 \fB<branch>\fR
624 when calculating which commits have been introduced by
625 \fB<branch>\fR\&.
627 When
628 \fB\-\-fork\-point\fR
629 is active,
630 \fIfork_point\fR
631 will be used instead of
632 \fB<upstream>\fR
633 to calculate the set of commits to rebase, where
634 \fIfork_point\fR
635 is the result of
636 \fBgit merge\-base \-\-fork\-point <upstream> <branch>\fR
637 command (see
638 \fBgit-merge-base\fR(1))\&. If
639 \fIfork_point\fR
640 ends up being empty, the
641 \fB<upstream>\fR
642 will be used as a fallback\&.
645 \fB<upstream>\fR
647 \fB\-\-keep\-base\fR
648 is given on the command line, then the default is
649 \fB\-\-no\-fork\-point\fR, otherwise the default is
650 \fB\-\-fork\-point\fR\&. See also
651 \fBrebase\&.forkpoint\fR
653 \fBgit-config\fR(1)\&.
655 If your branch was based on
656 \fB<upstream>\fR
658 \fB<upstream>\fR
659 was rewound and your branch contains commits which were dropped, this option can be used with
660 \fB\-\-keep\-base\fR
661 in order to drop those commits from your branch\&.
663 See also INCOMPATIBLE OPTIONS below\&.
666 \-\-ignore\-whitespace
667 .RS 4
668 Ignore whitespace differences when trying to reconcile differences\&. Currently, each backend implements an approximation of this behavior:
670 apply backend
671 .RS 4
672 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\&.
675 merge backend
676 .RS 4
677 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\&.
681 \-\-whitespace=<option>
682 .RS 4
683 This flag is passed to the
684 \fBgit apply\fR
685 program (see
686 \fBgit-apply\fR(1)) that applies the patch\&. Implies
687 \fB\-\-apply\fR\&.
689 See also INCOMPATIBLE OPTIONS below\&.
692 \-\-committer\-date\-is\-author\-date
693 .RS 4
694 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
695 \fB\-\-force\-rebase\fR\&.
698 \-\-ignore\-date, \-\-reset\-author\-date
699 .RS 4
700 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
701 \fB\-\-force\-rebase\fR\&.
703 See also INCOMPATIBLE OPTIONS below\&.
706 \-\-signoff
707 .RS 4
708 Add a
709 \fBSigned\-off\-by\fR
710 trailer to all the rebased commits\&. Note that if
711 \fB\-\-interactive\fR
712 is given then only commits marked to be picked, edited or reworded will have the trailer added\&.
714 See also INCOMPATIBLE OPTIONS below\&.
717 \-i, \-\-interactive
718 .RS 4
719 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)\&.
721 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\&.
723 See also INCOMPATIBLE OPTIONS below\&.
726 \-r, \-\-rebase\-merges[=(rebase\-cousins|no\-rebase\-cousins)], \-\-no\-rebase\-merges
727 .RS 4
728 By default, a rebase will simply drop merge commits from the todo list, and put the rebased commits into a single, linear branch\&. With
729 \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\&.
730 \fB\-\-no\-rebase\-merges\fR
731 can be used to countermand both the
732 \fBrebase\&.rebaseMerges\fR
733 config option and a previous
734 \fB\-\-rebase\-merges\fR\&.
736 When rebasing merges, there are two modes:
737 \fBrebase\-cousins\fR
739 \fBno\-rebase\-cousins\fR\&. If the mode is not specified, it defaults to
740 \fBno\-rebase\-cousins\fR\&. In
741 \fBno\-rebase\-cousins\fR
742 mode, commits which do not have
743 \fB<upstream>\fR
744 as direct ancestor will keep their original branch point, i\&.e\&. commits that would be excluded by
745 \fBgit-log\fR(1)\*(Aqs
746 \fB\-\-ancestry\-path\fR
747 option will keep their original ancestry by default\&. In
748 \fBrebase\-cousins\fR
749 mode, such commits are instead rebased onto
750 \fB<upstream>\fR
752 \fB<onto>\fR, if specified)\&.
754 It is currently only possible to recreate the merge commits using the
755 \fBort\fR
756 merge strategy; different merge strategies can be used only via explicit
757 \fBexec git merge \-s <strategy> [\&.\&.\&.]\fR
758 commands\&.
760 See also REBASING MERGES and INCOMPATIBLE OPTIONS below\&.
763 \-x <cmd>, \-\-exec <cmd>
764 .RS 4
765 Append "exec <cmd>" after each line creating a commit in the final history\&.
766 \fB<cmd>\fR
767 will be interpreted as one or more shell commands\&. Any command that fails will interrupt the rebase, with exit code 1\&.
769 You may execute several commands by either using one instance of
770 \fB\-\-exec\fR
771 with several commands:
773 .if n \{\
774 .RS 4
777 git rebase \-i \-\-exec "cmd1 && cmd2 && \&.\&.\&."
779 .if n \{\
783 or by giving more than one
784 \fB\-\-exec\fR:
786 .if n \{\
787 .RS 4
790 git rebase \-i \-\-exec "cmd1" \-\-exec "cmd2" \-\-exec \&.\&.\&.
792 .if n \{\
797 \fB\-\-autosquash\fR
798 is used,
799 \fBexec\fR
800 lines will not be appended for the intermediate commits, and will only appear at the end of each squash/fixup series\&.
802 This uses the
803 \fB\-\-interactive\fR
804 machinery internally, but it can be run without an explicit
805 \fB\-\-interactive\fR\&.
807 See also INCOMPATIBLE OPTIONS below\&.
810 \-\-root
811 .RS 4
812 Rebase all commits reachable from
813 \fB<branch>\fR, instead of limiting them with an
814 \fB<upstream>\fR\&. This allows you to rebase the root commit(s) on a branch\&.
816 See also INCOMPATIBLE OPTIONS below\&.
819 \-\-autosquash, \-\-no\-autosquash
820 .RS 4
821 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\&.
823 In the rebase todo list, the actions of squash, fixup and amend commits are changed from
824 \fBpick\fR
826 \fBsquash\fR,
827 \fBfixup\fR
829 \fBfixup \-C\fR, respectively, and they are moved right after the commit they modify\&. The
830 \fB\-\-interactive\fR
831 option can be used to review and edit the todo list before proceeding\&.
833 The recommended way to create commits with squash markers is by using the
834 \fB\-\-squash\fR,
835 \fB\-\-fixup\fR,
836 \fB\-\-fixup=amend:\fR
838 \fB\-\-fixup=reword:\fR
839 options of
840 \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\&.
842 Settting configuration variable
843 \fBrebase\&.autoSquash\fR
844 to true enables auto\-squashing by default for interactive rebase\&. The
845 \fB\-\-no\-autosquash\fR
846 option can be used to override that setting\&.
848 See also INCOMPATIBLE OPTIONS below\&.
851 \-\-autostash, \-\-no\-autostash
852 .RS 4
853 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\&.
856 \-\-reschedule\-failed\-exec, \-\-no\-reschedule\-failed\-exec
857 .RS 4
858 Automatically reschedule
859 \fBexec\fR
860 commands that failed\&. This only makes sense in interactive mode (or when an
861 \fB\-\-exec\fR
862 option was provided)\&.
864 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
865 \fBgit rebase\fR, the
866 \fBrebase\&.rescheduleFailedExec\fR
867 configuration (see
868 \fBgit-config\fR(1)
869 or "CONFIGURATION" below), or it defaults to false\&.
871 Recording this option for the whole rebase is a convenience feature\&. Otherwise an explicit
872 \fB\-\-no\-reschedule\-failed\-exec\fR
873 at the start would be overridden by the presence of a
874 \fBrebase\&.rescheduleFailedExec=true\fR
875 configuration when
876 \fBgit rebase \-\-continue\fR
877 is invoked\&. Currently, you cannot pass
878 \fB\-\-[no\-]reschedule\-failed\-exec\fR
880 \fBgit rebase \-\-continue\fR\&.
883 \-\-update\-refs, \-\-no\-update\-refs
884 .RS 4
885 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\&.
887 If the configuration variable
888 \fBrebase\&.updateRefs\fR
889 is set, then this option can be used to override and disable this setting\&.
891 See also INCOMPATIBLE OPTIONS below\&.
893 .SH "INCOMPATIBLE OPTIONS"
895 The following options:
897 .RS 4
898 .ie n \{\
899 \h'-04'\(bu\h'+03'\c
901 .el \{\
902 .sp -1
903 .IP \(bu 2.3
905 \-\-apply
908 .RS 4
909 .ie n \{\
910 \h'-04'\(bu\h'+03'\c
912 .el \{\
913 .sp -1
914 .IP \(bu 2.3
916 \-\-whitespace
919 .RS 4
920 .ie n \{\
921 \h'-04'\(bu\h'+03'\c
923 .el \{\
924 .sp -1
925 .IP \(bu 2.3
930 are incompatible with the following options:
932 .RS 4
933 .ie n \{\
934 \h'-04'\(bu\h'+03'\c
936 .el \{\
937 .sp -1
938 .IP \(bu 2.3
940 \-\-merge
943 .RS 4
944 .ie n \{\
945 \h'-04'\(bu\h'+03'\c
947 .el \{\
948 .sp -1
949 .IP \(bu 2.3
951 \-\-strategy
954 .RS 4
955 .ie n \{\
956 \h'-04'\(bu\h'+03'\c
958 .el \{\
959 .sp -1
960 .IP \(bu 2.3
962 \-\-strategy\-option
965 .RS 4
966 .ie n \{\
967 \h'-04'\(bu\h'+03'\c
969 .el \{\
970 .sp -1
971 .IP \(bu 2.3
973 \-\-autosquash
976 .RS 4
977 .ie n \{\
978 \h'-04'\(bu\h'+03'\c
980 .el \{\
981 .sp -1
982 .IP \(bu 2.3
984 \-\-rebase\-merges
987 .RS 4
988 .ie n \{\
989 \h'-04'\(bu\h'+03'\c
991 .el \{\
992 .sp -1
993 .IP \(bu 2.3
995 \-\-interactive
998 .RS 4
999 .ie n \{\
1000 \h'-04'\(bu\h'+03'\c
1002 .el \{\
1003 .sp -1
1004 .IP \(bu 2.3
1006 \-\-exec
1009 .RS 4
1010 .ie n \{\
1011 \h'-04'\(bu\h'+03'\c
1013 .el \{\
1014 .sp -1
1015 .IP \(bu 2.3
1017 \-\-no\-keep\-empty
1020 .RS 4
1021 .ie n \{\
1022 \h'-04'\(bu\h'+03'\c
1024 .el \{\
1025 .sp -1
1026 .IP \(bu 2.3
1028 \-\-empty=
1031 .RS 4
1032 .ie n \{\
1033 \h'-04'\(bu\h'+03'\c
1035 .el \{\
1036 .sp -1
1037 .IP \(bu 2.3
1039 \-\-[no\-]reapply\-cherry\-picks when used without \-\-keep\-base
1042 .RS 4
1043 .ie n \{\
1044 \h'-04'\(bu\h'+03'\c
1046 .el \{\
1047 .sp -1
1048 .IP \(bu 2.3
1050 \-\-update\-refs
1053 .RS 4
1054 .ie n \{\
1055 \h'-04'\(bu\h'+03'\c
1057 .el \{\
1058 .sp -1
1059 .IP \(bu 2.3
1061 \-\-root when used without \-\-onto
1064 In addition, the following pairs of options are incompatible:
1066 .RS 4
1067 .ie n \{\
1068 \h'-04'\(bu\h'+03'\c
1070 .el \{\
1071 .sp -1
1072 .IP \(bu 2.3
1074 \-\-keep\-base and \-\-onto
1077 .RS 4
1078 .ie n \{\
1079 \h'-04'\(bu\h'+03'\c
1081 .el \{\
1082 .sp -1
1083 .IP \(bu 2.3
1085 \-\-keep\-base and \-\-root
1088 .RS 4
1089 .ie n \{\
1090 \h'-04'\(bu\h'+03'\c
1092 .el \{\
1093 .sp -1
1094 .IP \(bu 2.3
1096 \-\-fork\-point and \-\-root
1098 .SH "BEHAVIORAL DIFFERENCES"
1100 \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:
1101 .SS "Empty commits"
1103 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\&.
1105 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)\&.
1107 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|ask)\fR option for changing the behavior of handling commits that become empty\&.
1108 .SS "Directory rename detection"
1110 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\&.
1112 Directory rename detection works with the \fImerge\fR backend to provide you warnings in such cases\&.
1113 .SS "Context"
1115 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 fuzz, 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)\&.
1117 The \fImerge\fR backend works with a full copy of each relevant file, insulating it from these types of problems\&.
1118 .SS "Labelling of conflicts markers"
1120 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\&.
1122 The \fImerge\fR backend works with the full commits on both sides of history and thus has no such limitations\&.
1123 .SS "Hooks"
1125 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\&.
1126 .SS "Interruptability"
1128 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\&.)
1129 .SS "Commit Rewording"
1131 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\&.
1132 .SS "Miscellaneous differences"
1134 There are a few more behavioral differences that most folks would probably consider inconsequential but which are mentioned for completeness:
1136 .RS 4
1137 .ie n \{\
1138 \h'-04'\(bu\h'+03'\c
1140 .el \{\
1141 .sp -1
1142 .IP \(bu 2.3
1144 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"\&.
1147 .RS 4
1148 .ie n \{\
1149 \h'-04'\(bu\h'+03'\c
1151 .el \{\
1152 .sp -1
1153 .IP \(bu 2.3
1155 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\&.
1158 .RS 4
1159 .ie n \{\
1160 \h'-04'\(bu\h'+03'\c
1162 .el \{\
1163 .sp -1
1164 .IP \(bu 2.3
1166 State directories: The two backends keep their state in different directories under
1167 \fB\&.git/\fR
1169 .SH "MERGE STRATEGIES"
1171 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\&.
1174 .RS 4
1175 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,
1176 \fBrecursive\fR\&.
1179 \fIort\fR
1180 strategy can take the following options:
1182 ours
1183 .RS 4
1184 This option forces conflicting hunks to be auto\-resolved cleanly by favoring
1185 \fIour\fR
1186 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\&.
1188 This should not be confused with the
1189 \fIours\fR
1190 merge strategy, which does not even look at what the other tree contains at all\&. It discards everything the other tree did, declaring
1191 \fIour\fR
1192 history contains all that happened in it\&.
1195 theirs
1196 .RS 4
1197 This is the opposite of
1198 \fIours\fR; note that, unlike
1199 \fIours\fR, there is no
1200 \fItheirs\fR
1201 merge strategy to confuse this merge option with\&.
1204 ignore\-space\-change, ignore\-all\-space, ignore\-space\-at\-eol, ignore\-cr\-at\-eol
1205 .RS 4
1206 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
1207 \fBgit-diff\fR(1)
1208 \fB\-b\fR,
1209 \fB\-w\fR,
1210 \fB\-\-ignore\-space\-at\-eol\fR, and
1211 \fB\-\-ignore\-cr\-at\-eol\fR\&.
1213 .RS 4
1214 .ie n \{\
1215 \h'-04'\(bu\h'+03'\c
1217 .el \{\
1218 .sp -1
1219 .IP \(bu 2.3
1222 \fItheir\fR
1223 version only introduces whitespace changes to a line,
1224 \fIour\fR
1225 version is used;
1228 .RS 4
1229 .ie n \{\
1230 \h'-04'\(bu\h'+03'\c
1232 .el \{\
1233 .sp -1
1234 .IP \(bu 2.3
1237 \fIour\fR
1238 version introduces whitespace changes but
1239 \fItheir\fR
1240 version includes a substantial change,
1241 \fItheir\fR
1242 version is used;
1245 .RS 4
1246 .ie n \{\
1247 \h'-04'\(bu\h'+03'\c
1249 .el \{\
1250 .sp -1
1251 .IP \(bu 2.3
1253 Otherwise, the merge proceeds in the usual way\&.
1257 renormalize
1258 .RS 4
1259 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
1260 \fBgitattributes\fR(5)
1261 for details\&.
1264 no\-renormalize
1265 .RS 4
1266 Disables the
1267 \fBrenormalize\fR
1268 option\&. This overrides the
1269 \fBmerge\&.renormalize\fR
1270 configuration variable\&.
1273 find\-renames[=<n>]
1274 .RS 4
1275 Turn on rename detection, optionally setting the similarity threshold\&. This is the default\&. This overrides the
1276 \fImerge\&.renames\fR
1277 configuration variable\&. See also
1278 \fBgit-diff\fR(1)
1279 \fB\-\-find\-renames\fR\&.
1282 rename\-threshold=<n>
1283 .RS 4
1284 Deprecated synonym for
1285 \fBfind\-renames=<n>\fR\&.
1288 subtree[=<path>]
1289 .RS 4
1290 This option is a more advanced form of
1291 \fIsubtree\fR
1292 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\&.
1296 recursive
1297 .RS 4
1298 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\&.
1301 \fIrecursive\fR
1302 strategy takes the same options as
1303 \fIort\fR\&. However, there are three additional options that
1304 \fIort\fR
1305 ignores (not documented above) that are potentially useful with the
1306 \fIrecursive\fR
1307 strategy:
1309 patience
1310 .RS 4
1311 Deprecated synonym for
1312 \fBdiff\-algorithm=patience\fR\&.
1315 diff\-algorithm=[patience|minimal|histogram|myers]
1316 .RS 4
1317 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
1318 \fBgit-diff\fR(1)
1319 \fB\-\-diff\-algorithm\fR\&. Note that
1320 \fBort\fR
1321 specifically uses
1322 \fBdiff\-algorithm=histogram\fR, while
1323 \fBrecursive\fR
1324 defaults to the
1325 \fBdiff\&.algorithm\fR
1326 config setting\&.
1329 no\-renames
1330 .RS 4
1331 Turn off rename detection\&. This overrides the
1332 \fBmerge\&.renames\fR
1333 configuration variable\&. See also
1334 \fBgit-diff\fR(1)
1335 \fB\-\-no\-renames\fR\&.
1339 resolve
1340 .RS 4
1341 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\&.
1344 octopus
1345 .RS 4
1346 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\&.
1349 ours
1350 .RS 4
1351 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
1352 \fIrecursive\fR
1353 merge strategy\&.
1356 subtree
1357 .RS 4
1358 This is a modified
1359 \fBort\fR
1360 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\&.
1363 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\&.
1364 .SH "NOTES"
1366 You should understand the implications of using \fBgit rebase\fR on a repository that you share\&. See also RECOVERING FROM UPSTREAM REBASE below\&.
1368 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\&.
1370 Upon completion, \fB<branch>\fR will be the current branch\&.
1371 .SH "INTERACTIVE MODE"
1373 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)\&.
1375 The interactive mode is meant for this type of workflow:
1377 .RS 4
1378 .ie n \{\
1379 \h'-04' 1.\h'+01'\c
1381 .el \{\
1382 .sp -1
1383 .IP "  1." 4.2
1385 have a wonderful idea
1388 .RS 4
1389 .ie n \{\
1390 \h'-04' 2.\h'+01'\c
1392 .el \{\
1393 .sp -1
1394 .IP "  2." 4.2
1396 hack on the code
1399 .RS 4
1400 .ie n \{\
1401 \h'-04' 3.\h'+01'\c
1403 .el \{\
1404 .sp -1
1405 .IP "  3." 4.2
1407 prepare a series for submission
1410 .RS 4
1411 .ie n \{\
1412 \h'-04' 4.\h'+01'\c
1414 .el \{\
1415 .sp -1
1416 .IP "  4." 4.2
1418 submit
1421 where point 2\&. consists of several instances of
1423 a) regular use
1425 .RS 4
1426 .ie n \{\
1427 \h'-04' 1.\h'+01'\c
1429 .el \{\
1430 .sp -1
1431 .IP "  1." 4.2
1433 finish something worthy of a commit
1436 .RS 4
1437 .ie n \{\
1438 \h'-04' 2.\h'+01'\c
1440 .el \{\
1441 .sp -1
1442 .IP "  2." 4.2
1444 commit
1447 b) independent fixup
1449 .RS 4
1450 .ie n \{\
1451 \h'-04' 1.\h'+01'\c
1453 .el \{\
1454 .sp -1
1455 .IP "  1." 4.2
1457 realize that something does not work
1460 .RS 4
1461 .ie n \{\
1462 \h'-04' 2.\h'+01'\c
1464 .el \{\
1465 .sp -1
1466 .IP "  2." 4.2
1468 fix that
1471 .RS 4
1472 .ie n \{\
1473 \h'-04' 3.\h'+01'\c
1475 .el \{\
1476 .sp -1
1477 .IP "  3." 4.2
1479 commit it
1482 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\&.
1484 Start it with the last commit you want to retain as\-is:
1486 .if n \{\
1487 .RS 4
1490 git rebase \-i <after\-this\-commit>
1492 .if n \{\
1496 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:
1498 .if n \{\
1499 .RS 4
1502 pick deadbee The oneline of this commit
1503 pick fa1afe1 The oneline of the next commit
1504 \&.\&.\&.
1506 .if n \{\
1511 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\&.
1513 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\&.
1515 To interrupt the rebase (just like an "edit" command would do, but without cherry\-picking any commit first), use the "break" command\&.
1517 If you just want to edit the commit message for a commit, replace the command "pick" with the command "reword"\&.
1519 To drop a commit, replace the command "pick" with "drop", or just delete the matching line\&.
1521 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\&.
1523 \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\&.
1525 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:
1527 .if n \{\
1528 .RS 4
1531 $ git rebase \-i HEAD~5
1533 .if n \{\
1538 And move the first patch to the end of the list\&.
1540 You might want to recreate merge commits, e\&.g\&. if you have a history like this:
1542 .if n \{\
1543 .RS 4
1546            X
1547             \e
1548          A\-\-\-M\-\-\-B
1549         /
1550 \-\-\-o\-\-\-O\-\-\-P\-\-\-Q
1552 .if n \{\
1557 Suppose you want to rebase the side branch starting at "A" to "Q"\&. Make sure that the current \fBHEAD\fR is "B", and call
1559 .if n \{\
1560 .RS 4
1563 $ git rebase \-i \-r \-\-onto Q O
1565 .if n \{\
1570 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:
1572 .if n \{\
1573 .RS 4
1576 pick deadbee Implement feature XXX
1577 fixup f1a5c00 Fix to feature XXX
1578 exec make
1579 pick c0ffeee The oneline of the next commit
1580 edit deadbab The oneline of the commit after
1581 exec cd subdir; make test
1582 \&.\&.\&.
1584 .if n \{\
1589 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\&.
1591 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\&.
1593 .if n \{\
1594 .RS 4
1597 $ git rebase \-i \-\-exec "make test"
1599 .if n \{\
1604 This command lets you check that intermediate commits are compilable\&. The todo list becomes like that:
1606 .if n \{\
1607 .RS 4
1610 pick 5928aea one
1611 exec make test
1612 pick 04d0fda two
1613 exec make test
1614 pick ba46169 three
1615 exec make test
1616 pick f4593f9 four
1617 exec make test
1619 .if n \{\
1623 .SH "SPLITTING COMMITS"
1625 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:
1627 .RS 4
1628 .ie n \{\
1629 \h'-04'\(bu\h'+03'\c
1631 .el \{\
1632 .sp -1
1633 .IP \(bu 2.3
1635 Start an interactive rebase with
1636 \fBgit rebase \-i <commit>^\fR, where
1637 \fB<commit>\fR
1638 is the commit you want to split\&. In fact, any commit range will do, as long as it contains that commit\&.
1641 .RS 4
1642 .ie n \{\
1643 \h'-04'\(bu\h'+03'\c
1645 .el \{\
1646 .sp -1
1647 .IP \(bu 2.3
1649 Mark the commit you want to split with the action "edit"\&.
1652 .RS 4
1653 .ie n \{\
1654 \h'-04'\(bu\h'+03'\c
1656 .el \{\
1657 .sp -1
1658 .IP \(bu 2.3
1660 When it comes to editing that commit, execute
1661 \fBgit reset HEAD^\fR\&. The effect is that the
1662 \fBHEAD\fR
1663 is rewound by one, and the index follows suit\&. However, the working tree stays the same\&.
1666 .RS 4
1667 .ie n \{\
1668 \h'-04'\(bu\h'+03'\c
1670 .el \{\
1671 .sp -1
1672 .IP \(bu 2.3
1674 Now add the changes to the index that you want to have in the first commit\&. You can use
1675 \fBgit add\fR
1676 (possibly interactively) or
1677 \fBgit gui\fR
1678 (or both) to do that\&.
1681 .RS 4
1682 .ie n \{\
1683 \h'-04'\(bu\h'+03'\c
1685 .el \{\
1686 .sp -1
1687 .IP \(bu 2.3
1689 Commit the now\-current index with whatever commit message is appropriate now\&.
1692 .RS 4
1693 .ie n \{\
1694 \h'-04'\(bu\h'+03'\c
1696 .el \{\
1697 .sp -1
1698 .IP \(bu 2.3
1700 Repeat the last two steps until your working tree is clean\&.
1703 .RS 4
1704 .ie n \{\
1705 \h'-04'\(bu\h'+03'\c
1707 .el \{\
1708 .sp -1
1709 .IP \(bu 2.3
1711 Continue the rebase with
1712 \fBgit rebase \-\-continue\fR\&.
1715 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\&.
1716 .SH "RECOVERING FROM UPSTREAM REBASE"
1718 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\&.
1720 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:
1722 .if n \{\
1723 .RS 4
1726     o\-\-\-o\-\-\-o\-\-\-o\-\-\-o\-\-\-o\-\-\-o\-\-\-o  master
1727          \e
1728           o\-\-\-o\-\-\-o\-\-\-o\-\-\-o  subsystem
1729                            \e
1730                             *\-\-\-*\-\-\-*  topic
1732 .if n \{\
1737 If \fIsubsystem\fR is rebased against \fImaster\fR, the following happens:
1739 .if n \{\
1740 .RS 4
1743     o\-\-\-o\-\-\-o\-\-\-o\-\-\-o\-\-\-o\-\-\-o\-\-\-o  master
1744          \e                       \e
1745           o\-\-\-o\-\-\-o\-\-\-o\-\-\-o       o\*(Aq\-\-o\*(Aq\-\-o\*(Aq\-\-o\*(Aq\-\-o\*(Aq  subsystem
1746                            \e
1747                             *\-\-\-*\-\-\-*  topic
1749 .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 \{\
1771 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!
1773 There are two kinds of fixes, discussed in the following subsections:
1775 Easy case: The changes are literally the same\&.
1776 .RS 4
1777 This happens if the
1778 \fIsubsystem\fR
1779 rebase was a simple rebase and had no conflicts\&.
1782 Hard case: The changes are not the same\&.
1783 .RS 4
1784 This happens if the
1785 \fIsubsystem\fR
1786 rebase had conflicts, or used
1787 \fB\-\-interactive\fR
1788 to omit, edit, squash, or fixup commits; or if the upstream used one of
1789 \fBcommit \-\-amend\fR,
1790 \fBreset\fR, or a full history rewriting command like
1791 \m[blue]\fB\fBfilter\-repo\fR\fR\m[]\&\s-2\u[2]\d\s+2\&.
1793 .SS "The easy case"
1795 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\&.
1797 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)
1799 .if n \{\
1800 .RS 4
1803     $ git rebase subsystem
1805 .if n \{\
1810 you will end up with the fixed history
1812 .if n \{\
1813 .RS 4
1816     o\-\-\-o\-\-\-o\-\-\-o\-\-\-o\-\-\-o\-\-\-o\-\-\-o  master
1817                                  \e
1818                                   o\*(Aq\-\-o\*(Aq\-\-o\*(Aq\-\-o\*(Aq\-\-o\*(Aq  subsystem
1819                                                    \e
1820                                                     *\-\-\-*\-\-\-*  topic
1822 .if n \{\
1826 .SS "The hard case"
1828 Things get more complicated if the \fIsubsystem\fR changes do not exactly correspond to the ones before the rebase\&.
1829 .if n \{\
1832 .RS 4
1833 .it 1 an-trap
1834 .nr an-no-space-flag 1
1835 .nr an-break-flag 1
1837 .ps +1
1838 \fBNote\fR
1839 .ps -1
1842 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!
1843 .sp .5v
1846 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:
1848 .RS 4
1849 .ie n \{\
1850 \h'-04'\(bu\h'+03'\c
1852 .el \{\
1853 .sp -1
1854 .IP \(bu 2.3
1856 With the
1857 \fIsubsystem\fR
1858 reflog: after
1859 \fBgit fetch\fR, the old tip of
1860 \fIsubsystem\fR
1861 is at
1862 \fBsubsystem@{1}\fR\&. Subsequent fetches will increase the number\&. (See
1863 \fBgit-reflog\fR(1)\&.)
1866 .RS 4
1867 .ie n \{\
1868 \h'-04'\(bu\h'+03'\c
1870 .el \{\
1871 .sp -1
1872 .IP \(bu 2.3
1874 Relative to the tip of
1875 \fItopic\fR: knowing that your
1876 \fItopic\fR
1877 has three commits, the old tip of
1878 \fIsubsystem\fR
1879 must be
1880 \fBtopic~3\fR\&.
1883 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):
1885 .if n \{\
1886 .RS 4
1889     $ git rebase \-\-onto subsystem subsystem@{1}
1891 .if n \{\
1896 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!
1897 .SH "REBASING MERGES"
1899 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)\&.
1901 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\&.
1903 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:
1905 .if n \{\
1906 .RS 4
1909 *   Merge branch \*(Aqreport\-a\-bug\*(Aq
1911 | * Add the feedback button
1912 * | Merge branch \*(Aqrefactor\-button\*(Aq
1913 |\e \e
1914 | |/
1915 | * Use the Button class for all buttons
1916 | * Extract a generic Button class from the DownloadButton one
1918 .if n \{\
1923 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\&.
1925 This rebase can be performed using the \fB\-\-rebase\-merges\fR option\&. It will generate a todo list looking like this:
1927 .if n \{\
1928 .RS 4
1931 label onto
1933 # Branch: refactor\-button
1934 reset onto
1935 pick 123456 Extract a generic Button class from the DownloadButton one
1936 pick 654321 Use the Button class for all buttons
1937 label refactor\-button
1939 # Branch: report\-a\-bug
1940 reset refactor\-button # Use the Button class for all buttons
1941 pick abcdef Add the feedback button
1942 label report\-a\-bug
1944 reset onto
1945 merge \-C a1b2c3 refactor\-button # Merge \*(Aqrefactor\-button\*(Aq
1946 merge \-C 6f5e4d report\-a\-bug # Merge \*(Aqreport\-a\-bug\*(Aq
1948 .if n \{\
1953 In contrast to a regular interactive rebase, there are \fBlabel\fR, \fBreset\fR and \fBmerge\fR commands in addition to \fBpick\fR ones\&.
1955 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\&.
1957 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)\&.
1959 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\&.
1961 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\&.
1963 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\&.
1965 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\&.
1967 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:
1969 .if n \{\
1970 .RS 4
1973 pick 192837 Switch from GNU Makefiles to CMake
1974 pick 5a6c7e Document the switch to CMake
1975 pick 918273 Fix detection of OpenSSL in CMake
1976 pick afbecd http: add support for TLS v1\&.3
1977 pick fdbaec Fix detection of cURL in CMake on Windows
1979 .if n \{\
1984 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:
1986 .if n \{\
1987 .RS 4
1990 label onto
1992 pick afbecd http: add support for TLS v1\&.3
1993 label tlsv1\&.3
1995 reset onto
1996 pick 192837 Switch from GNU Makefiles to CMake
1997 pick 918273 Fix detection of OpenSSL in CMake
1998 pick fdbaec Fix detection of cURL in CMake on Windows
1999 pick 5a6c7e Document the switch to CMake
2000 label cmake
2002 reset onto
2003 merge tlsv1\&.3
2004 merge cmake
2006 .if n \{\
2010 .SH "CONFIGURATION"
2012 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:
2014 rebase\&.backend
2015 .RS 4
2016 Default backend to use for rebasing\&. Possible choices are
2017 \fIapply\fR
2019 \fImerge\fR\&. In the future, if the merge backend gains all remaining capabilities of the apply backend, this setting may become unused\&.
2022 rebase\&.stat
2023 .RS 4
2024 Whether to show a diffstat of what changed upstream since the last rebase\&. False by default\&.
2027 rebase\&.autoSquash
2028 .RS 4
2029 If set to true, enable the
2030 \fB\-\-autosquash\fR
2031 option of
2032 \fBgit-rebase\fR(1)
2033 by default for interactive mode\&. This can be overridden with the
2034 \fB\-\-no\-autosquash\fR
2035 option\&.
2038 rebase\&.autoStash
2039 .RS 4
2040 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
2041 \fB\-\-no\-autostash\fR
2043 \fB\-\-autostash\fR
2044 options of
2045 \fBgit-rebase\fR(1)\&. Defaults to false\&.
2048 rebase\&.updateRefs
2049 .RS 4
2050 If set to true enable
2051 \fB\-\-update\-refs\fR
2052 option by default\&.
2055 rebase\&.missingCommitsCheck
2056 .RS 4
2057 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,
2058 \fIgit rebase \-\-edit\-todo\fR
2059 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
2060 \fBdrop\fR
2061 command in the todo list\&. Defaults to "ignore"\&.
2064 rebase\&.instructionFormat
2065 .RS 4
2066 A format string, as specified in
2067 \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\&.
2070 rebase\&.abbreviateCommands
2071 .RS 4
2072 If set to true,
2073 \fBgit rebase\fR
2074 will use abbreviated command names in the todo list resulting in something like this:
2076 .if n \{\
2077 .RS 4
2080         p deadbee The oneline of the commit
2081         p fa1afe1 The oneline of the next commit
2082         \&.\&.\&.
2084 .if n \{\
2088 instead of:
2090 .if n \{\
2091 .RS 4
2094         pick deadbee The oneline of the commit
2095         pick fa1afe1 The oneline of the next commit
2096         \&.\&.\&.
2098 .if n \{\
2102 Defaults to false\&.
2105 rebase\&.rescheduleFailedExec
2106 .RS 4
2107 Automatically reschedule
2108 \fBexec\fR
2109 commands that failed\&. This only makes sense in interactive mode (or when an
2110 \fB\-\-exec\fR
2111 option was provided)\&. This is the same as specifying the
2112 \fB\-\-reschedule\-failed\-exec\fR
2113 option\&.
2116 rebase\&.forkPoint
2117 .RS 4
2118 If set to false set
2119 \fB\-\-no\-fork\-point\fR
2120 option by default\&.
2123 rebase\&.rebaseMerges
2124 .RS 4
2125 Whether and how to set the
2126 \fB\-\-rebase\-merges\fR
2127 option by default\&. Can be
2128 \fBrebase\-cousins\fR,
2129 \fBno\-rebase\-cousins\fR, or a boolean\&. Setting to true or to
2130 \fBno\-rebase\-cousins\fR
2131 is equivalent to
2132 \fB\-\-rebase\-merges=no\-rebase\-cousins\fR, setting to
2133 \fBrebase\-cousins\fR
2134 is equivalent to
2135 \fB\-\-rebase\-merges=rebase\-cousins\fR, and setting to false is equivalent to
2136 \fB\-\-no\-rebase\-merges\fR\&. Passing
2137 \fB\-\-rebase\-merges\fR
2138 on the command line, with or without an argument, overrides any
2139 \fBrebase\&.rebaseMerges\fR
2140 configuration\&.
2143 rebase\&.maxLabelLength
2144 .RS 4
2145 When generating label names from commit subjects, truncate the names to this length\&. By default, the names are truncated to a little less than
2146 \fBNAME_MAX\fR
2147 (to allow e\&.g\&.
2148 \fB\&.lock\fR
2149 files to be written for the corresponding loose refs)\&.
2152 sequence\&.editor
2153 .RS 4
2154 Text editor used by
2155 \fBgit rebase \-i\fR
2156 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
2157 \fBGIT_SEQUENCE_EDITOR\fR
2158 environment variable\&. When not configured, the default commit message editor is used instead\&.
2160 .SH "GIT"
2162 Part of the \fBgit\fR(1) suite
2163 .SH "NOTES"
2164 .IP " 1." 4
2165 revert-a-faulty-merge How-To
2166 .RS 4
2167 \%git-htmldocs/howto/revert-a-faulty-merge.html
2169 .IP " 2." 4
2170 \fBfilter-repo\fR
2171 .RS 4
2172 \%https://github.com/newren/git-filter-repo