Autogenerated manpages for v2.43.0-493-gbc7ee2
[git-manpages.git] / man1 / git-replay.1
blob3f881162d4d049de34cc63d526b89786de122986
1 '\" t
2 .\"     Title: git-replay
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-01-30
6 .\"    Manual: Git Manual
7 .\"    Source: Git 2.43.0.493.gbc7ee2e5e1
8 .\"  Language: English
9 .\"
10 .TH "GIT\-REPLAY" "1" "2024\-01\-30" "Git 2\&.43\&.0\&.493\&.gbc7ee2" "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-replay \- EXPERIMENTAL: Replay commits on a new base, works with bare repos too
32 .SH "SYNOPSIS"
33 .sp
34 .nf
35 (EXPERIMENTAL!) \fIgit replay\fR ([\-\-contained] \-\-onto <newbase> | \-\-advance <branch>) <revision\-range>\&...
36 .fi
37 .sp
38 .SH "DESCRIPTION"
39 .sp
40 Takes ranges of commits and replays them onto a new location\&. Leaves the working tree and the index untouched, and updates no references\&. The output of this command is meant to be used as input to \fBgit update\-ref \-\-stdin\fR, which would update the relevant branches (see the OUTPUT section below)\&.
41 .sp
42 THIS COMMAND IS EXPERIMENTAL\&. THE BEHAVIOR MAY CHANGE\&.
43 .SH "OPTIONS"
44 .PP
45 \-\-onto <newbase>
46 .RS 4
47 Starting point at which to create the new commits\&. May be any valid commit, and not just an existing branch name\&.
48 .sp
49 When
50 \fB\-\-onto\fR
51 is specified, the update\-ref command(s) in the output will update the branch(es) in the revision range to point at the new commits, similar to the way how
52 \fBgit rebase \-\-update\-refs\fR
53 updates multiple branches in the affected range\&.
54 .RE
55 .PP
56 \-\-advance <branch>
57 .RS 4
58 Starting point at which to create the new commits; must be a branch name\&.
59 .sp
60 When
61 \fB\-\-advance\fR
62 is specified, the update\-ref command(s) in the output will update the branch passed as an argument to
63 \fB\-\-advance\fR
64 to point at the new commits (in other words, this mimics a cherry\-pick operation)\&.
65 .RE
66 .PP
67 <revision\-range>
68 .RS 4
69 Range of commits to replay\&. More than one <revision\-range> can be passed, but in
70 \fB\-\-advance <branch>\fR
71 mode, they should have a single tip, so that it\(cqs clear where <branch> should point to\&. See "Specifying Ranges" in linkgit:git\-rev\-parse and the "Commit Limiting" options below\&.
72 .RE
73 .SS "Commit Limiting"
74 .sp
75 Besides specifying a range of commits that should be listed using the special notations explained in the description, additional commit limiting may be applied\&.
76 .sp
77 Using more options generally further limits the output (e\&.g\&. \fB\-\-since=<date1>\fR limits to commits newer than \fB<date1>\fR, and using it with \fB\-\-grep=<pattern>\fR further limits to commits whose log message has a line that matches \fB<pattern>\fR), unless otherwise noted\&.
78 .sp
79 Note that these are applied before commit ordering and formatting options, such as \fB\-\-reverse\fR\&.
80 .PP
81 \-<number>, \-n <number>, \-\-max\-count=<number>
82 .RS 4
83 Limit the number of commits to output\&.
84 .RE
85 .PP
86 \-\-skip=<number>
87 .RS 4
88 Skip
89 \fInumber\fR
90 commits before starting to show the commit output\&.
91 .RE
92 .PP
93 \-\-since=<date>, \-\-after=<date>
94 .RS 4
95 Show commits more recent than a specific date\&.
96 .RE
97 .PP
98 \-\-since\-as\-filter=<date>
99 .RS 4
100 Show all commits more recent than a specific date\&. This visits all commits in the range, rather than stopping at the first commit which is older than a specific date\&.
103 \-\-until=<date>, \-\-before=<date>
104 .RS 4
105 Show commits older than a specific date\&.
108 \-\-author=<pattern>, \-\-committer=<pattern>
109 .RS 4
110 Limit the commits output to ones with author/committer header lines that match the specified pattern (regular expression)\&. With more than one
111 \fB\-\-author=<pattern>\fR, commits whose author matches any of the given patterns are chosen (similarly for multiple
112 \fB\-\-committer=<pattern>\fR)\&.
115 \-\-grep\-reflog=<pattern>
116 .RS 4
117 Limit the commits output to ones with reflog entries that match the specified pattern (regular expression)\&. With more than one
118 \fB\-\-grep\-reflog\fR, commits whose reflog message matches any of the given patterns are chosen\&. It is an error to use this option unless
119 \fB\-\-walk\-reflogs\fR
120 is in use\&.
123 \-\-grep=<pattern>
124 .RS 4
125 Limit the commits output to ones with a log message that matches the specified pattern (regular expression)\&. With more than one
126 \fB\-\-grep=<pattern>\fR, commits whose message matches any of the given patterns are chosen (but see
127 \fB\-\-all\-match\fR)\&.
129 When
130 \fB\-\-notes\fR
131 is in effect, the message from the notes is matched as if it were part of the log message\&.
134 \-\-all\-match
135 .RS 4
136 Limit the commits output to ones that match all given
137 \fB\-\-grep\fR, instead of ones that match at least one\&.
140 \-\-invert\-grep
141 .RS 4
142 Limit the commits output to ones with a log message that do not match the pattern specified with
143 \fB\-\-grep=<pattern>\fR\&.
146 \-i, \-\-regexp\-ignore\-case
147 .RS 4
148 Match the regular expression limiting patterns without regard to letter case\&.
151 \-\-basic\-regexp
152 .RS 4
153 Consider the limiting patterns to be basic regular expressions; this is the default\&.
156 \-E, \-\-extended\-regexp
157 .RS 4
158 Consider the limiting patterns to be extended regular expressions instead of the default basic regular expressions\&.
161 \-F, \-\-fixed\-strings
162 .RS 4
163 Consider the limiting patterns to be fixed strings (don\(cqt interpret pattern as a regular expression)\&.
166 \-P, \-\-perl\-regexp
167 .RS 4
168 Consider the limiting patterns to be Perl\-compatible regular expressions\&.
170 Support for these types of regular expressions is an optional compile\-time dependency\&. If Git wasn\(cqt compiled with support for them providing this option will cause it to die\&.
173 \-\-remove\-empty
174 .RS 4
175 Stop when a given path disappears from the tree\&.
178 \-\-merges
179 .RS 4
180 Print only merge commits\&. This is exactly the same as
181 \fB\-\-min\-parents=2\fR\&.
184 \-\-no\-merges
185 .RS 4
186 Do not print commits with more than one parent\&. This is exactly the same as
187 \fB\-\-max\-parents=1\fR\&.
190 \-\-min\-parents=<number>, \-\-max\-parents=<number>, \-\-no\-min\-parents, \-\-no\-max\-parents
191 .RS 4
192 Show only commits which have at least (or at most) that many parent commits\&. In particular,
193 \fB\-\-max\-parents=1\fR
194 is the same as
195 \fB\-\-no\-merges\fR,
196 \fB\-\-min\-parents=2\fR
197 is the same as
198 \fB\-\-merges\fR\&.
199 \fB\-\-max\-parents=0\fR
200 gives all root commits and
201 \fB\-\-min\-parents=3\fR
202 all octopus merges\&.
204 \fB\-\-no\-min\-parents\fR
206 \fB\-\-no\-max\-parents\fR
207 reset these limits (to no limit) again\&. Equivalent forms are
208 \fB\-\-min\-parents=0\fR
209 (any commit has 0 or more parents) and
210 \fB\-\-max\-parents=\-1\fR
211 (negative numbers denote no upper limit)\&.
214 \-\-first\-parent
215 .RS 4
216 When finding commits to include, follow only the first parent commit upon seeing a merge commit\&. This option can give a better overview when viewing the evolution of a particular topic branch, because merges into a topic branch tend to be only about adjusting to updated upstream from time to time, and this option allows you to ignore the individual commits brought in to your history by such a merge\&.
219 \-\-exclude\-first\-parent\-only
220 .RS 4
221 When finding commits to exclude (with a
222 \fI^\fR), follow only the first parent commit upon seeing a merge commit\&. This can be used to find the set of changes in a topic branch from the point where it diverged from the remote branch, given that arbitrary merges can be valid topic branch changes\&.
225 \-\-not
226 .RS 4
227 Reverses the meaning of the
228 \fI^\fR
229 prefix (or lack thereof) for all following revision specifiers, up to the next
230 \fB\-\-not\fR\&. When used on the command line before \-\-stdin, the revisions passed through stdin will not be affected by it\&. Conversely, when passed via standard input, the revisions passed on the command line will not be affected by it\&.
233 \-\-all
234 .RS 4
235 Pretend as if all the refs in
236 \fBrefs/\fR, along with
237 \fBHEAD\fR, are listed on the command line as
238 \fI<commit>\fR\&.
241 \-\-branches[=<pattern>]
242 .RS 4
243 Pretend as if all the refs in
244 \fBrefs/heads\fR
245 are listed on the command line as
246 \fI<commit>\fR\&. If
247 \fI<pattern>\fR
248 is given, limit branches to ones matching given shell glob\&. If pattern lacks
249 \fI?\fR,
250 \fI*\fR, or
251 \fI[\fR,
252 \fI/*\fR
253 at the end is implied\&.
256 \-\-tags[=<pattern>]
257 .RS 4
258 Pretend as if all the refs in
259 \fBrefs/tags\fR
260 are listed on the command line as
261 \fI<commit>\fR\&. If
262 \fI<pattern>\fR
263 is given, limit tags to ones matching given shell glob\&. If pattern lacks
264 \fI?\fR,
265 \fI*\fR, or
266 \fI[\fR,
267 \fI/*\fR
268 at the end is implied\&.
271 \-\-remotes[=<pattern>]
272 .RS 4
273 Pretend as if all the refs in
274 \fBrefs/remotes\fR
275 are listed on the command line as
276 \fI<commit>\fR\&. If
277 \fI<pattern>\fR
278 is given, limit remote\-tracking branches to ones matching given shell glob\&. If pattern lacks
279 \fI?\fR,
280 \fI*\fR, or
281 \fI[\fR,
282 \fI/*\fR
283 at the end is implied\&.
286 \-\-glob=<glob\-pattern>
287 .RS 4
288 Pretend as if all the refs matching shell glob
289 \fI<glob\-pattern>\fR
290 are listed on the command line as
291 \fI<commit>\fR\&. Leading
292 \fIrefs/\fR, is automatically prepended if missing\&. If pattern lacks
293 \fI?\fR,
294 \fI*\fR, or
295 \fI[\fR,
296 \fI/*\fR
297 at the end is implied\&.
300 \-\-exclude=<glob\-pattern>
301 .RS 4
302 Do not include refs matching
303 \fI<glob\-pattern>\fR
304 that the next
305 \fB\-\-all\fR,
306 \fB\-\-branches\fR,
307 \fB\-\-tags\fR,
308 \fB\-\-remotes\fR, or
309 \fB\-\-glob\fR
310 would otherwise consider\&. Repetitions of this option accumulate exclusion patterns up to the next
311 \fB\-\-all\fR,
312 \fB\-\-branches\fR,
313 \fB\-\-tags\fR,
314 \fB\-\-remotes\fR, or
315 \fB\-\-glob\fR
316 option (other options or arguments do not clear accumulated patterns)\&.
318 The patterns given should not begin with
319 \fBrefs/heads\fR,
320 \fBrefs/tags\fR, or
321 \fBrefs/remotes\fR
322 when applied to
323 \fB\-\-branches\fR,
324 \fB\-\-tags\fR, or
325 \fB\-\-remotes\fR, respectively, and they must begin with
326 \fBrefs/\fR
327 when applied to
328 \fB\-\-glob\fR
330 \fB\-\-all\fR\&. If a trailing
331 \fI/*\fR
332 is intended, it must be given explicitly\&.
335 \-\-exclude\-hidden=[fetch|receive|uploadpack]
336 .RS 4
337 Do not include refs that would be hidden by
338 \fBgit\-fetch\fR,
339 \fBgit\-receive\-pack\fR
341 \fBgit\-upload\-pack\fR
342 by consulting the appropriate
343 \fBfetch\&.hideRefs\fR,
344 \fBreceive\&.hideRefs\fR
346 \fBuploadpack\&.hideRefs\fR
347 configuration along with
348 \fBtransfer\&.hideRefs\fR
349 (see
350 \fBgit-config\fR(1))\&. This option affects the next pseudo\-ref option
351 \fB\-\-all\fR
353 \fB\-\-glob\fR
354 and is cleared after processing them\&.
357 \-\-reflog
358 .RS 4
359 Pretend as if all objects mentioned by reflogs are listed on the command line as
360 \fB<commit>\fR\&.
363 \-\-alternate\-refs
364 .RS 4
365 Pretend as if all objects mentioned as ref tips of alternate repositories were listed on the command line\&. An alternate repository is any repository whose object directory is specified in
366 \fBobjects/info/alternates\fR\&. The set of included objects may be modified by
367 \fBcore\&.alternateRefsCommand\fR, etc\&. See
368 \fBgit-config\fR(1)\&.
371 \-\-single\-worktree
372 .RS 4
373 By default, all working trees will be examined by the following options when there are more than one (see
374 \fBgit-worktree\fR(1)):
375 \fB\-\-all\fR,
376 \fB\-\-reflog\fR
378 \fB\-\-indexed\-objects\fR\&. This option forces them to examine the current working tree only\&.
381 \-\-ignore\-missing
382 .RS 4
383 Upon seeing an invalid object name in the input, pretend as if the bad input was not given\&.
386 \-\-bisect
387 .RS 4
388 Pretend as if the bad bisection ref
389 \fBrefs/bisect/bad\fR
390 was listed and as if it was followed by
391 \fB\-\-not\fR
392 and the good bisection refs
393 \fBrefs/bisect/good\-*\fR
394 on the command line\&.
397 \-\-stdin
398 .RS 4
399 In addition to getting arguments from the command line, read them from standard input as well\&. This accepts commits and pseudo\-options like
400 \fB\-\-all\fR
402 \fB\-\-glob=\fR\&. When a
403 \fB\-\-\fR
404 separator is seen, the following input is treated as paths and used to limit the result\&. Flags like
405 \fB\-\-not\fR
406 which are read via standard input are only respected for arguments passed in the same way and will not influence any subsequent command line arguments\&.
409 \-\-cherry\-mark
410 .RS 4
411 Like
412 \fB\-\-cherry\-pick\fR
413 (see below) but mark equivalent commits with
414 \fB=\fR
415 rather than omitting them, and inequivalent ones with
416 \fB+\fR\&.
419 \-\-cherry\-pick
420 .RS 4
421 Omit any commit that introduces the same change as another commit on the \(lqother side\(rq when the set of commits are limited with symmetric difference\&.
423 For example, if you have two branches,
424 \fBA\fR
426 \fBB\fR, a usual way to list all commits on only one side of them is with
427 \fB\-\-left\-right\fR
428 (see the example below in the description of the
429 \fB\-\-left\-right\fR
430 option)\&. However, it shows the commits that were cherry\-picked from the other branch (for example, \(lq3rd on b\(rq may be cherry\-picked from branch A)\&. With this option, such pairs of commits are excluded from the output\&.
433 \-\-left\-only, \-\-right\-only
434 .RS 4
435 List only commits on the respective side of a symmetric difference, i\&.e\&. only those which would be marked
436 \fB<\fR
437 resp\&.
438 \fB>\fR
440 \fB\-\-left\-right\fR\&.
442 For example,
443 \fB\-\-cherry\-pick \-\-right\-only A\&.\&.\&.B\fR
444 omits those commits from
445 \fBB\fR
446 which are in
447 \fBA\fR
448 or are patch\-equivalent to a commit in
449 \fBA\fR\&. In other words, this lists the
450 \fB+\fR
451 commits from
452 \fBgit cherry A B\fR\&. More precisely,
453 \fB\-\-cherry\-pick \-\-right\-only \-\-no\-merges\fR
454 gives the exact list\&.
457 \-\-cherry
458 .RS 4
459 A synonym for
460 \fB\-\-right\-only \-\-cherry\-mark \-\-no\-merges\fR; useful to limit the output to the commits on our side and mark those that have been applied to the other side of a forked history with
461 \fBgit log \-\-cherry upstream\&.\&.\&.mybranch\fR, similar to
462 \fBgit cherry upstream mybranch\fR\&.
465 \-g, \-\-walk\-reflogs
466 .RS 4
467 Instead of walking the commit ancestry chain, walk reflog entries from the most recent one to older ones\&. When this option is used you cannot specify commits to exclude (that is,
468 \fI^commit\fR,
469 \fIcommit1\&.\&.commit2\fR, and
470 \fIcommit1\&.\&.\&.commit2\fR
471 notations cannot be used)\&.
473 With
474 \fB\-\-pretty\fR
475 format other than
476 \fBoneline\fR
478 \fBreference\fR
479 (for obvious reasons), this causes the output to have two extra lines of information taken from the reflog\&. The reflog designator in the output may be shown as
480 \fBref@{Nth}\fR
481 (where
482 \fBNth\fR
483 is the reverse\-chronological index in the reflog) or as
484 \fBref@{timestamp}\fR
485 (with the timestamp for that entry), depending on a few rules:
487 .RS 4
488 .ie n \{\
489 \h'-04' 1.\h'+01'\c
491 .el \{\
492 .sp -1
493 .IP "  1." 4.2
495 If the starting point is specified as
496 \fBref@{Nth}\fR, show the index format\&.
499 .RS 4
500 .ie n \{\
501 \h'-04' 2.\h'+01'\c
503 .el \{\
504 .sp -1
505 .IP "  2." 4.2
507 If the starting point was specified as
508 \fBref@{now}\fR, show the timestamp format\&.
511 .RS 4
512 .ie n \{\
513 \h'-04' 3.\h'+01'\c
515 .el \{\
516 .sp -1
517 .IP "  3." 4.2
519 If neither was used, but
520 \fB\-\-date\fR
521 was given on the command line, show the timestamp in the format requested by
522 \fB\-\-date\fR\&.
525 .RS 4
526 .ie n \{\
527 \h'-04' 4.\h'+01'\c
529 .el \{\
530 .sp -1
531 .IP "  4." 4.2
533 Otherwise, show the index format\&.
536 Under
537 \fB\-\-pretty=oneline\fR, the commit message is prefixed with this information on the same line\&. This option cannot be combined with
538 \fB\-\-reverse\fR\&. See also
539 \fBgit-reflog\fR(1)\&.
541 Under
542 \fB\-\-pretty=reference\fR, this information will not be shown at all\&.
545 \-\-merge
546 .RS 4
547 After a failed merge, show refs that touch files having a conflict and don\(cqt exist on all heads to merge\&.
550 \-\-boundary
551 .RS 4
552 Output excluded boundary commits\&. Boundary commits are prefixed with
553 \fB\-\fR\&.
555 .SS "History Simplification"
557 Sometimes you are only interested in parts of the history, for example the commits modifying a particular <path>\&. But there are two parts of \fIHistory Simplification\fR, one part is selecting the commits and the other is how to do it, as there are various strategies to simplify the history\&.
559 The following options select the commits to be shown:
561 <paths>
562 .RS 4
563 Commits modifying the given <paths> are selected\&.
566 \-\-simplify\-by\-decoration
567 .RS 4
568 Commits that are referred by some branch or tag are selected\&.
571 Note that extra commits can be shown to give a meaningful history\&.
573 The following options affect the way the simplification is performed:
575 Default mode
576 .RS 4
577 Simplifies the history to the simplest history explaining the final state of the tree\&. Simplest because it prunes some side branches if the end result is the same (i\&.e\&. merging branches with the same content)
580 \-\-show\-pulls
581 .RS 4
582 Include all commits from the default mode, but also any merge commits that are not TREESAME to the first parent but are TREESAME to a later parent\&. This mode is helpful for showing the merge commits that "first introduced" a change to a branch\&.
585 \-\-full\-history
586 .RS 4
587 Same as the default mode, but does not prune some history\&.
590 \-\-dense
591 .RS 4
592 Only the selected commits are shown, plus some to have a meaningful history\&.
595 \-\-sparse
596 .RS 4
597 All commits in the simplified history are shown\&.
600 \-\-simplify\-merges
601 .RS 4
602 Additional option to
603 \fB\-\-full\-history\fR
604 to remove some needless merges from the resulting history, as there are no selected commits contributing to this merge\&.
607 \-\-ancestry\-path[=<commit>]
608 .RS 4
609 When given a range of commits to display (e\&.g\&.
610 \fIcommit1\&.\&.commit2\fR
612 \fIcommit2 ^commit1\fR), only display commits in that range that are ancestors of <commit>, descendants of <commit>, or <commit> itself\&. If no commit is specified, use
613 \fIcommit1\fR
614 (the excluded part of the range) as <commit>\&. Can be passed multiple times; if so, a commit is included if it is any of the commits given or if it is an ancestor or descendant of one of them\&.
617 A more detailed explanation follows\&.
619 Suppose you specified \fBfoo\fR as the <paths>\&. We shall call commits that modify \fBfoo\fR !TREESAME, and the rest TREESAME\&. (In a diff filtered for \fBfoo\fR, they look different and equal, respectively\&.)
621 In the following, we will always refer to the same example history to illustrate the differences between simplification settings\&. We assume that you are filtering for a file \fBfoo\fR in this commit graph:
623 .if n \{\
624 .RS 4
627           \&.\-A\-\-\-M\-\-\-N\-\-\-O\-\-\-P\-\-\-Q
628          /     /   /   /   /   /
629         I     B   C   D   E   Y
630          \e   /   /   /   /   /
631           `\-\-\-\-\-\-\-\-\-\-\-\-\-\*(Aq   X
633 .if n \{\
638 The horizontal line of history A\-\-\-Q is taken to be the first parent of each merge\&. The commits are:
640 .RS 4
641 .ie n \{\
642 \h'-04'\(bu\h'+03'\c
644 .el \{\
645 .sp -1
646 .IP \(bu 2.3
648 \fBI\fR
649 is the initial commit, in which
650 \fBfoo\fR
651 exists with contents \(lqasdf\(rq, and a file
652 \fBquux\fR
653 exists with contents \(lqquux\(rq\&. Initial commits are compared to an empty tree, so
654 \fBI\fR
655 is !TREESAME\&.
658 .RS 4
659 .ie n \{\
660 \h'-04'\(bu\h'+03'\c
662 .el \{\
663 .sp -1
664 .IP \(bu 2.3
667 \fBA\fR,
668 \fBfoo\fR
669 contains just \(lqfoo\(rq\&.
672 .RS 4
673 .ie n \{\
674 \h'-04'\(bu\h'+03'\c
676 .el \{\
677 .sp -1
678 .IP \(bu 2.3
680 \fBB\fR
681 contains the same change as
682 \fBA\fR\&. Its merge
683 \fBM\fR
684 is trivial and hence TREESAME to all parents\&.
687 .RS 4
688 .ie n \{\
689 \h'-04'\(bu\h'+03'\c
691 .el \{\
692 .sp -1
693 .IP \(bu 2.3
695 \fBC\fR
696 does not change
697 \fBfoo\fR, but its merge
698 \fBN\fR
699 changes it to \(lqfoobar\(rq, so it is not TREESAME to any parent\&.
702 .RS 4
703 .ie n \{\
704 \h'-04'\(bu\h'+03'\c
706 .el \{\
707 .sp -1
708 .IP \(bu 2.3
710 \fBD\fR
711 sets
712 \fBfoo\fR
713 to \(lqbaz\(rq\&. Its merge
714 \fBO\fR
715 combines the strings from
716 \fBN\fR
718 \fBD\fR
719 to \(lqfoobarbaz\(rq; i\&.e\&., it is not TREESAME to any parent\&.
722 .RS 4
723 .ie n \{\
724 \h'-04'\(bu\h'+03'\c
726 .el \{\
727 .sp -1
728 .IP \(bu 2.3
730 \fBE\fR
731 changes
732 \fBquux\fR
733 to \(lqxyzzy\(rq, and its merge
734 \fBP\fR
735 combines the strings to \(lqquux xyzzy\(rq\&.
736 \fBP\fR
737 is TREESAME to
738 \fBO\fR, but not to
739 \fBE\fR\&.
742 .RS 4
743 .ie n \{\
744 \h'-04'\(bu\h'+03'\c
746 .el \{\
747 .sp -1
748 .IP \(bu 2.3
750 \fBX\fR
751 is an independent root commit that added a new file
752 \fBside\fR, and
753 \fBY\fR
754 modified it\&.
755 \fBY\fR
756 is TREESAME to
757 \fBX\fR\&. Its merge
758 \fBQ\fR
759 added
760 \fBside\fR
762 \fBP\fR, and
763 \fBQ\fR
764 is TREESAME to
765 \fBP\fR, but not to
766 \fBY\fR\&.
769 \fBrev\-list\fR walks backwards through history, including or excluding commits based on whether \fB\-\-full\-history\fR and/or parent rewriting (via \fB\-\-parents\fR or \fB\-\-children\fR) are used\&. The following settings are available\&.
771 Default mode
772 .RS 4
773 Commits are included if they are not TREESAME to any parent (though this can be changed, see
774 \fB\-\-sparse\fR
775 below)\&. If the commit was a merge, and it was TREESAME to one parent, follow only that parent\&. (Even if there are several TREESAME parents, follow only one of them\&.) Otherwise, follow all parents\&.
777 This results in:
779 .if n \{\
780 .RS 4
783           \&.\-A\-\-\-N\-\-\-O
784          /     /   /
785         I\-\-\-\-\-\-\-\-\-D
787 .if n \{\
791 Note how the rule to only follow the TREESAME parent, if one is available, removed
792 \fBB\fR
793 from consideration entirely\&.
794 \fBC\fR
795 was considered via
796 \fBN\fR, but is TREESAME\&. Root commits are compared to an empty tree, so
797 \fBI\fR
798 is !TREESAME\&.
800 Parent/child relations are only visible with
801 \fB\-\-parents\fR, but that does not affect the commits selected in default mode, so we have shown the parent lines\&.
804 \-\-full\-history without parent rewriting
805 .RS 4
806 This mode differs from the default in one point: always follow all parents of a merge, even if it is TREESAME to one of them\&. Even if more than one side of the merge has commits that are included, this does not imply that the merge itself is! In the example, we get
808 .if n \{\
809 .RS 4
812         I  A  B  N  D  O  P  Q
814 .if n \{\
818 \fBM\fR
819 was excluded because it is TREESAME to both parents\&.
820 \fBE\fR,
821 \fBC\fR
823 \fBB\fR
824 were all walked, but only
825 \fBB\fR
826 was !TREESAME, so the others do not appear\&.
828 Note that without parent rewriting, it is not really possible to talk about the parent/child relationships between the commits, so we show them disconnected\&.
831 \-\-full\-history with parent rewriting
832 .RS 4
833 Ordinary commits are only included if they are !TREESAME (though this can be changed, see
834 \fB\-\-sparse\fR
835 below)\&.
837 Merges are always included\&. However, their parent list is rewritten: Along each parent, prune away commits that are not included themselves\&. This results in
839 .if n \{\
840 .RS 4
843           \&.\-A\-\-\-M\-\-\-N\-\-\-O\-\-\-P\-\-\-Q
844          /     /   /   /   /
845         I     B   /   D   /
846          \e   /   /   /   /
847           `\-\-\-\-\-\-\-\-\-\-\-\-\-\*(Aq
849 .if n \{\
853 Compare to
854 \fB\-\-full\-history\fR
855 without rewriting above\&. Note that
856 \fBE\fR
857 was pruned away because it is TREESAME, but the parent list of P was rewritten to contain
858 \fBE\fR\*(Aqs parent
859 \fBI\fR\&. The same happened for
860 \fBC\fR
862 \fBN\fR, and
863 \fBX\fR,
864 \fBY\fR
866 \fBQ\fR\&.
869 In addition to the above settings, you can change whether TREESAME affects inclusion:
871 \-\-dense
872 .RS 4
873 Commits that are walked are included if they are not TREESAME to any parent\&.
876 \-\-sparse
877 .RS 4
878 All commits that are walked are included\&.
880 Note that without
881 \fB\-\-full\-history\fR, this still simplifies merges: if one of the parents is TREESAME, we follow only that one, so the other sides of the merge are never walked\&.
884 \-\-simplify\-merges
885 .RS 4
886 First, build a history graph in the same way that
887 \fB\-\-full\-history\fR
888 with parent rewriting does (see above)\&.
890 Then simplify each commit
891 \fBC\fR
892 to its replacement
893 \fBC\*(Aq\fR
894 in the final history according to the following rules:
896 .RS 4
897 .ie n \{\
898 \h'-04'\(bu\h'+03'\c
900 .el \{\
901 .sp -1
902 .IP \(bu 2.3
905 \fBC\*(Aq\fR
907 \fBC\fR\&.
910 .RS 4
911 .ie n \{\
912 \h'-04'\(bu\h'+03'\c
914 .el \{\
915 .sp -1
916 .IP \(bu 2.3
918 Replace each parent
919 \fBP\fR
921 \fBC\*(Aq\fR
922 with its simplification
923 \fBP\*(Aq\fR\&. In the process, drop parents that are ancestors of other parents or that are root commits TREESAME to an empty tree, and remove duplicates, but take care to never drop all parents that we are TREESAME to\&.
926 .RS 4
927 .ie n \{\
928 \h'-04'\(bu\h'+03'\c
930 .el \{\
931 .sp -1
932 .IP \(bu 2.3
934 If after this parent rewriting,
935 \fBC\*(Aq\fR
936 is a root or merge commit (has zero or >1 parents), a boundary commit, or !TREESAME, it remains\&. Otherwise, it is replaced with its only parent\&.
939 The effect of this is best shown by way of comparing to
940 \fB\-\-full\-history\fR
941 with parent rewriting\&. The example turns into:
943 .if n \{\
944 .RS 4
947           \&.\-A\-\-\-M\-\-\-N\-\-\-O
948          /     /       /
949         I     B       D
950          \e   /       /
951           `\-\-\-\-\-\-\-\-\-\*(Aq
953 .if n \{\
957 Note the major differences in
958 \fBN\fR,
959 \fBP\fR, and
960 \fBQ\fR
961 over
962 \fB\-\-full\-history\fR:
964 .RS 4
965 .ie n \{\
966 \h'-04'\(bu\h'+03'\c
968 .el \{\
969 .sp -1
970 .IP \(bu 2.3
972 \fBN\fR\*(Aqs parent list had
973 \fBI\fR
974 removed, because it is an ancestor of the other parent
975 \fBM\fR\&. Still,
976 \fBN\fR
977 remained because it is !TREESAME\&.
980 .RS 4
981 .ie n \{\
982 \h'-04'\(bu\h'+03'\c
984 .el \{\
985 .sp -1
986 .IP \(bu 2.3
988 \fBP\fR\*(Aqs parent list similarly had
989 \fBI\fR
990 removed\&.
991 \fBP\fR
992 was then removed completely, because it had one parent and is TREESAME\&.
995 .RS 4
996 .ie n \{\
997 \h'-04'\(bu\h'+03'\c
999 .el \{\
1000 .sp -1
1001 .IP \(bu 2.3
1003 \fBQ\fR\*(Aqs parent list had
1004 \fBY\fR
1005 simplified to
1006 \fBX\fR\&.
1007 \fBX\fR
1008 was then removed, because it was a TREESAME root\&.
1009 \fBQ\fR
1010 was then removed completely, because it had one parent and is TREESAME\&.
1014 There is another simplification mode available:
1016 \-\-ancestry\-path[=<commit>]
1017 .RS 4
1018 Limit the displayed commits to those which are an ancestor of <commit>, or which are a descendant of <commit>, or are <commit> itself\&.
1020 As an example use case, consider the following commit history:
1022 .if n \{\
1023 .RS 4
1026             D\-\-\-E\-\-\-\-\-\-\-F
1027            /     \e       \e
1028           B\-\-\-C\-\-\-G\-\-\-H\-\-\-I\-\-\-J
1029          /                     \e
1030         A\-\-\-\-\-\-\-K\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-L\-\-M
1032 .if n \{\
1036 A regular
1037 \fID\&.\&.M\fR
1038 computes the set of commits that are ancestors of
1039 \fBM\fR, but excludes the ones that are ancestors of
1040 \fBD\fR\&. This is useful to see what happened to the history leading to
1041 \fBM\fR
1042 since
1043 \fBD\fR, in the sense that \(lqwhat does
1044 \fBM\fR
1045 have that did not exist in
1046 \fBD\fR\(rq\&. The result in this example would be all the commits, except
1047 \fBA\fR
1049 \fBB\fR
1050 (and
1051 \fBD\fR
1052 itself, of course)\&.
1054 When we want to find out what commits in
1055 \fBM\fR
1056 are contaminated with the bug introduced by
1057 \fBD\fR
1058 and need fixing, however, we might want to view only the subset of
1059 \fID\&.\&.M\fR
1060 that are actually descendants of
1061 \fBD\fR, i\&.e\&. excluding
1062 \fBC\fR
1064 \fBK\fR\&. This is exactly what the
1065 \fB\-\-ancestry\-path\fR
1066 option does\&. Applied to the
1067 \fID\&.\&.M\fR
1068 range, it results in:
1070 .if n \{\
1071 .RS 4
1074                 E\-\-\-\-\-\-\-F
1075                  \e       \e
1076                   G\-\-\-H\-\-\-I\-\-\-J
1077                                \e
1078                                 L\-\-M
1080 .if n \{\
1084 We can also use
1085 \fB\-\-ancestry\-path=D\fR
1086 instead of
1087 \fB\-\-ancestry\-path\fR
1088 which means the same thing when applied to the
1089 \fID\&.\&.M\fR
1090 range but is just more explicit\&.
1092 If we instead are interested in a given topic within this range, and all commits affected by that topic, we may only want to view the subset of
1093 \fBD\&.\&.M\fR
1094 which contain that topic in their ancestry path\&. So, using
1095 \fB\-\-ancestry\-path=H D\&.\&.M\fR
1096 for example would result in:
1098 .if n \{\
1099 .RS 4
1102                 E
1103                  \e
1104                   G\-\-\-H\-\-\-I\-\-\-J
1105                                \e
1106                                 L\-\-M
1108 .if n \{\
1112 Whereas
1113 \fB\-\-ancestry\-path=K D\&.\&.M\fR
1114 would result in
1116 .if n \{\
1117 .RS 4
1120                 K\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-L\-\-M
1122 .if n \{\
1128 Before discussing another option, \fB\-\-show\-pulls\fR, we need to create a new example history\&.
1130 A common problem users face when looking at simplified history is that a commit they know changed a file somehow does not appear in the file\(cqs simplified history\&. Let\(cqs demonstrate a new example and show how options such as \fB\-\-full\-history\fR and \fB\-\-simplify\-merges\fR works in that case:
1132 .if n \{\
1133 .RS 4
1136           \&.\-A\-\-\-M\-\-\-\-\-C\-\-N\-\-\-O\-\-\-P
1137          /     / \e  \e  \e/   /   /
1138         I     B   \e  R\-\*(Aq`\-Z\*(Aq   /
1139          \e   /     \e/         /
1140           \e /      /\e        /
1141            `\-\-\-X\-\-\*(Aq  `\-\-\-Y\-\-\*(Aq
1143 .if n \{\
1148 For this example, suppose \fBI\fR created \fBfile\&.txt\fR which was modified by \fBA\fR, \fBB\fR, and \fBX\fR in different ways\&. The single\-parent commits \fBC\fR, \fBZ\fR, and \fBY\fR do not change \fBfile\&.txt\fR\&. The merge commit \fBM\fR was created by resolving the merge conflict to include both changes from \fBA\fR and \fBB\fR and hence is not TREESAME to either\&. The merge commit \fBR\fR, however, was created by ignoring the contents of \fBfile\&.txt\fR at \fBM\fR and taking only the contents of \fBfile\&.txt\fR at \fBX\fR\&. Hence, \fBR\fR is TREESAME to \fBX\fR but not \fBM\fR\&. Finally, the natural merge resolution to create \fBN\fR is to take the contents of \fBfile\&.txt\fR at \fBR\fR, so \fBN\fR is TREESAME to \fBR\fR but not \fBC\fR\&. The merge commits \fBO\fR and \fBP\fR are TREESAME to their first parents, but not to their second parents, \fBZ\fR and \fBY\fR respectively\&.
1150 When using the default mode, \fBN\fR and \fBR\fR both have a TREESAME parent, so those edges are walked and the others are ignored\&. The resulting history graph is:
1152 .if n \{\
1153 .RS 4
1156         I\-\-\-X
1158 .if n \{\
1163 When using \fB\-\-full\-history\fR, Git walks every edge\&. This will discover the commits \fBA\fR and \fBB\fR and the merge \fBM\fR, but also will reveal the merge commits \fBO\fR and \fBP\fR\&. With parent rewriting, the resulting graph is:
1165 .if n \{\
1166 .RS 4
1169           \&.\-A\-\-\-M\-\-\-\-\-\-\-\-N\-\-\-O\-\-\-P
1170          /     / \e  \e  \e/   /   /
1171         I     B   \e  R\-\*(Aq`\-\-\*(Aq   /
1172          \e   /     \e/         /
1173           \e /      /\e        /
1174            `\-\-\-X\-\-\*(Aq  `\-\-\-\-\-\-\*(Aq
1176 .if n \{\
1181 Here, the merge commits \fBO\fR and \fBP\fR contribute extra noise, as they did not actually contribute a change to \fBfile\&.txt\fR\&. They only merged a topic that was based on an older version of \fBfile\&.txt\fR\&. This is a common issue in repositories using a workflow where many contributors work in parallel and merge their topic branches along a single trunk: many unrelated merges appear in the \fB\-\-full\-history\fR results\&.
1183 When using the \fB\-\-simplify\-merges\fR option, the commits \fBO\fR and \fBP\fR disappear from the results\&. This is because the rewritten second parents of \fBO\fR and \fBP\fR are reachable from their first parents\&. Those edges are removed and then the commits look like single\-parent commits that are TREESAME to their parent\&. This also happens to the commit \fBN\fR, resulting in a history view as follows:
1185 .if n \{\
1186 .RS 4
1189           \&.\-A\-\-\-M\-\-\&.
1190          /     /    \e
1191         I     B      R
1192          \e   /      /
1193           \e /      /
1194            `\-\-\-X\-\-\*(Aq
1196 .if n \{\
1201 In this view, we see all of the important single\-parent changes from \fBA\fR, \fBB\fR, and \fBX\fR\&. We also see the carefully\-resolved merge \fBM\fR and the not\-so\-carefully\-resolved merge \fBR\fR\&. This is usually enough information to determine why the commits \fBA\fR and \fBB\fR "disappeared" from history in the default view\&. However, there are a few issues with this approach\&.
1203 The first issue is performance\&. Unlike any previous option, the \fB\-\-simplify\-merges\fR option requires walking the entire commit history before returning a single result\&. This can make the option difficult to use for very large repositories\&.
1205 The second issue is one of auditing\&. When many contributors are working on the same repository, it is important which merge commits introduced a change into an important branch\&. The problematic merge \fBR\fR above is not likely to be the merge commit that was used to merge into an important branch\&. Instead, the merge \fBN\fR was used to merge \fBR\fR and \fBX\fR into the important branch\&. This commit may have information about why the change \fBX\fR came to override the changes from \fBA\fR and \fBB\fR in its commit message\&.
1207 \-\-show\-pulls
1208 .RS 4
1209 In addition to the commits shown in the default history, show each merge commit that is not TREESAME to its first parent but is TREESAME to a later parent\&.
1211 When a merge commit is included by
1212 \fB\-\-show\-pulls\fR, the merge is treated as if it "pulled" the change from another branch\&. When using
1213 \fB\-\-show\-pulls\fR
1214 on this example (and no other options) the resulting graph is:
1216 .if n \{\
1217 .RS 4
1220         I\-\-\-X\-\-\-R\-\-\-N
1222 .if n \{\
1226 Here, the merge commits
1227 \fBR\fR
1229 \fBN\fR
1230 are included because they pulled the commits
1231 \fBX\fR
1233 \fBR\fR
1234 into the base branch, respectively\&. These merges are the reason the commits
1235 \fBA\fR
1237 \fBB\fR
1238 do not appear in the default history\&.
1240 When
1241 \fB\-\-show\-pulls\fR
1242 is paired with
1243 \fB\-\-simplify\-merges\fR, the graph includes all of the necessary information:
1245 .if n \{\
1246 .RS 4
1249           \&.\-A\-\-\-M\-\-\&.   N
1250          /     /    \e /
1251         I     B      R
1252          \e   /      /
1253           \e /      /
1254            `\-\-\-X\-\-\*(Aq
1256 .if n \{\
1260 Notice that since
1261 \fBM\fR
1262 is reachable from
1263 \fBR\fR, the edge from
1264 \fBN\fR
1266 \fBM\fR
1267 was simplified away\&. However,
1268 \fBN\fR
1269 still appears in the history as an important commit because it "pulled" the change
1270 \fBR\fR
1271 into the main branch\&.
1274 The \fB\-\-simplify\-by\-decoration\fR option allows you to view only the big picture of the topology of the history, by omitting commits that are not referenced by tags\&. Commits are marked as !TREESAME (in other words, kept after history simplification rules described above) if (1) they are referenced by tags, or (2) they change the contents of the paths given on the command line\&. All other commits are marked as TREESAME (subject to be simplified away)\&.
1275 .SS "Commit Ordering"
1277 By default, the commits are shown in reverse chronological order\&.
1279 \-\-date\-order
1280 .RS 4
1281 Show no parents before all of its children are shown, but otherwise show commits in the commit timestamp order\&.
1284 \-\-author\-date\-order
1285 .RS 4
1286 Show no parents before all of its children are shown, but otherwise show commits in the author timestamp order\&.
1289 \-\-topo\-order
1290 .RS 4
1291 Show no parents before all of its children are shown, and avoid showing commits on multiple lines of history intermixed\&.
1293 For example, in a commit history like this:
1295 .if n \{\
1296 .RS 4
1299     \-\-\-1\-\-\-\-2\-\-\-\-4\-\-\-\-7
1300         \e              \e
1301          3\-\-\-\-5\-\-\-\-6\-\-\-\-8\-\-\-
1303 .if n \{\
1307 where the numbers denote the order of commit timestamps,
1308 \fBgit rev\-list\fR
1309 and friends with
1310 \fB\-\-date\-order\fR
1311 show the commits in the timestamp order: 8 7 6 5 4 3 2 1\&.
1313 With
1314 \fB\-\-topo\-order\fR, they would show 8 6 5 3 7 4 2 1 (or 8 7 4 2 6 5 3 1); some older commits are shown before newer ones in order to avoid showing the commits from two parallel development track mixed together\&.
1317 \-\-reverse
1318 .RS 4
1319 Output the commits chosen to be shown (see Commit Limiting section above) in reverse order\&. Cannot be combined with
1320 \fB\-\-walk\-reflogs\fR\&.
1322 .SS "Object Traversal"
1324 These options are mostly targeted for packing of Git repositories\&.
1326 \-\-no\-walk[=(sorted|unsorted)]
1327 .RS 4
1328 Only show the given commits, but do not traverse their ancestors\&. This has no effect if a range is specified\&. If the argument
1329 \fBunsorted\fR
1330 is given, the commits are shown in the order they were given on the command line\&. Otherwise (if
1331 \fBsorted\fR
1332 or no argument was given), the commits are shown in reverse chronological order by commit time\&. Cannot be combined with
1333 \fB\-\-graph\fR\&.
1336 \-\-do\-walk
1337 .RS 4
1338 Overrides a previous
1339 \fB\-\-no\-walk\fR\&.
1341 .SS "Commit Formatting"
1343 \-\-pretty[=<format>], \-\-format=<format>
1344 .RS 4
1345 Pretty\-print the contents of the commit logs in a given format, where
1346 \fI<format>\fR
1347 can be one of
1348 \fIoneline\fR,
1349 \fIshort\fR,
1350 \fImedium\fR,
1351 \fIfull\fR,
1352 \fIfuller\fR,
1353 \fIreference\fR,
1354 \fIemail\fR,
1355 \fIraw\fR,
1356 \fIformat:<string>\fR
1358 \fItformat:<string>\fR\&. When
1359 \fI<format>\fR
1360 is none of the above, and has
1361 \fI%placeholder\fR
1362 in it, it acts as if
1363 \fI\-\-pretty=tformat:<format>\fR
1364 were given\&.
1366 See the "PRETTY FORMATS" section for some additional details for each format\&. When
1367 \fI=<format>\fR
1368 part is omitted, it defaults to
1369 \fImedium\fR\&.
1371 Note: you can specify the default pretty format in the repository configuration (see
1372 \fBgit-config\fR(1))\&.
1375 \-\-abbrev\-commit
1376 .RS 4
1377 Instead of showing the full 40\-byte hexadecimal commit object name, show a prefix that names the object uniquely\&. "\-\-abbrev=<n>" (which also modifies diff output, if it is displayed) option can be used to specify the minimum length of the prefix\&.
1379 This should make "\-\-pretty=oneline" a whole lot more readable for people using 80\-column terminals\&.
1382 \-\-no\-abbrev\-commit
1383 .RS 4
1384 Show the full 40\-byte hexadecimal commit object name\&. This negates
1385 \fB\-\-abbrev\-commit\fR, either explicit or implied by other options such as "\-\-oneline"\&. It also overrides the
1386 \fBlog\&.abbrevCommit\fR
1387 variable\&.
1390 \-\-oneline
1391 .RS 4
1392 This is a shorthand for "\-\-pretty=oneline \-\-abbrev\-commit" used together\&.
1395 \-\-encoding=<encoding>
1396 .RS 4
1397 Commit objects record the character encoding used for the log message in their encoding header; this option can be used to tell the command to re\-code the commit log message in the encoding preferred by the user\&. For non plumbing commands this defaults to UTF\-8\&. Note that if an object claims to be encoded in
1398 \fBX\fR
1399 and we are outputting in
1400 \fBX\fR, we will output the object verbatim; this means that invalid sequences in the original commit may be copied to the output\&. Likewise, if iconv(3) fails to convert the commit, we will quietly output the original object verbatim\&.
1403 \-\-expand\-tabs=<n>, \-\-expand\-tabs, \-\-no\-expand\-tabs
1404 .RS 4
1405 Perform a tab expansion (replace each tab with enough spaces to fill to the next display column that is a multiple of
1406 \fI<n>\fR) in the log message before showing it in the output\&.
1407 \fB\-\-expand\-tabs\fR
1408 is a short\-hand for
1409 \fB\-\-expand\-tabs=8\fR, and
1410 \fB\-\-no\-expand\-tabs\fR
1411 is a short\-hand for
1412 \fB\-\-expand\-tabs=0\fR, which disables tab expansion\&.
1414 By default, tabs are expanded in pretty formats that indent the log message by 4 spaces (i\&.e\&.
1415 \fImedium\fR, which is the default,
1416 \fIfull\fR, and
1417 \fIfuller\fR)\&.
1420 \-\-notes[=<ref>]
1421 .RS 4
1422 Show the notes (see
1423 \fBgit-notes\fR(1)) that annotate the commit, when showing the commit log message\&. This is the default for
1424 \fBgit log\fR,
1425 \fBgit show\fR
1427 \fBgit whatchanged\fR
1428 commands when there is no
1429 \fB\-\-pretty\fR,
1430 \fB\-\-format\fR, or
1431 \fB\-\-oneline\fR
1432 option given on the command line\&.
1434 By default, the notes shown are from the notes refs listed in the
1435 \fBcore\&.notesRef\fR
1437 \fBnotes\&.displayRef\fR
1438 variables (or corresponding environment overrides)\&. See
1439 \fBgit-config\fR(1)
1440 for more details\&.
1442 With an optional
1443 \fI<ref>\fR
1444 argument, use the ref to find the notes to display\&. The ref can specify the full refname when it begins with
1445 \fBrefs/notes/\fR; when it begins with
1446 \fBnotes/\fR,
1447 \fBrefs/\fR
1448 and otherwise
1449 \fBrefs/notes/\fR
1450 is prefixed to form the full name of the ref\&.
1452 Multiple \-\-notes options can be combined to control which notes are being displayed\&. Examples: "\-\-notes=foo" will show only notes from "refs/notes/foo"; "\-\-notes=foo \-\-notes" will show both notes from "refs/notes/foo" and from the default notes ref(s)\&.
1455 \-\-no\-notes
1456 .RS 4
1457 Do not show notes\&. This negates the above
1458 \fB\-\-notes\fR
1459 option, by resetting the list of notes refs from which notes are shown\&. Options are parsed in the order given on the command line, so e\&.g\&. "\-\-notes \-\-notes=foo \-\-no\-notes \-\-notes=bar" will only show notes from "refs/notes/bar"\&.
1462 \-\-show\-notes\-by\-default
1463 .RS 4
1464 Show the default notes unless options for displaying specific notes are given\&.
1467 \-\-show\-notes[=<ref>], \-\-[no\-]standard\-notes
1468 .RS 4
1469 These options are deprecated\&. Use the above \-\-notes/\-\-no\-notes options instead\&.
1472 \-\-show\-signature
1473 .RS 4
1474 Check the validity of a signed commit object by passing the signature to
1475 \fBgpg \-\-verify\fR
1476 and show the output\&.
1479 \-\-relative\-date
1480 .RS 4
1481 Synonym for
1482 \fB\-\-date=relative\fR\&.
1485 \-\-date=<format>
1486 .RS 4
1487 Only takes effect for dates shown in human\-readable format, such as when using
1488 \fB\-\-pretty\fR\&.
1489 \fBlog\&.date\fR
1490 config variable sets a default value for the log command\(cqs
1491 \fB\-\-date\fR
1492 option\&. By default, dates are shown in the original time zone (either committer\(cqs or author\(cqs)\&. If
1493 \fB\-local\fR
1494 is appended to the format (e\&.g\&.,
1495 \fBiso\-local\fR), the user\(cqs local time zone is used instead\&.
1497 \fB\-\-date=relative\fR
1498 shows dates relative to the current time, e\&.g\&. \(lq2 hours ago\(rq\&. The
1499 \fB\-local\fR
1500 option has no effect for
1501 \fB\-\-date=relative\fR\&.
1503 \fB\-\-date=local\fR
1504 is an alias for
1505 \fB\-\-date=default\-local\fR\&.
1507 \fB\-\-date=iso\fR
1509 \fB\-\-date=iso8601\fR) shows timestamps in a ISO 8601\-like format\&. The differences to the strict ISO 8601 format are:
1511 .RS 4
1512 .ie n \{\
1513 \h'-04'\(bu\h'+03'\c
1515 .el \{\
1516 .sp -1
1517 .IP \(bu 2.3
1519 a space instead of the
1520 \fBT\fR
1521 date/time delimiter
1524 .RS 4
1525 .ie n \{\
1526 \h'-04'\(bu\h'+03'\c
1528 .el \{\
1529 .sp -1
1530 .IP \(bu 2.3
1532 a space between time and time zone
1535 .RS 4
1536 .ie n \{\
1537 \h'-04'\(bu\h'+03'\c
1539 .el \{\
1540 .sp -1
1541 .IP \(bu 2.3
1543 no colon between hours and minutes of the time zone
1546 \fB\-\-date=iso\-strict\fR
1548 \fB\-\-date=iso8601\-strict\fR) shows timestamps in strict ISO 8601 format\&.
1550 \fB\-\-date=rfc\fR
1552 \fB\-\-date=rfc2822\fR) shows timestamps in RFC 2822 format, often found in email messages\&.
1554 \fB\-\-date=short\fR
1555 shows only the date, but not the time, in
1556 \fBYYYY\-MM\-DD\fR
1557 format\&.
1559 \fB\-\-date=raw\fR
1560 shows the date as seconds since the epoch (1970\-01\-01 00:00:00 UTC), followed by a space, and then the timezone as an offset from UTC (a
1561 \fB+\fR
1563 \fB\-\fR
1564 with four digits; the first two are hours, and the second two are minutes)\&. I\&.e\&., as if the timestamp were formatted with
1565 \fBstrftime("%s %z")\fR)\&. Note that the
1566 \fB\-local\fR
1567 option does not affect the seconds\-since\-epoch value (which is always measured in UTC), but does switch the accompanying timezone value\&.
1569 \fB\-\-date=human\fR
1570 shows the timezone if the timezone does not match the current time\-zone, and doesn\(cqt print the whole date if that matches (ie skip printing year for dates that are "this year", but also skip the whole date itself if it\(cqs in the last few days and we can just say what weekday it was)\&. For older dates the hour and minute is also omitted\&.
1572 \fB\-\-date=unix\fR
1573 shows the date as a Unix epoch timestamp (seconds since 1970)\&. As with
1574 \fB\-\-raw\fR, this is always in UTC and therefore
1575 \fB\-local\fR
1576 has no effect\&.
1578 \fB\-\-date=format:\&.\&.\&.\fR
1579 feeds the format
1580 \fB\&.\&.\&.\fR
1581 to your system
1582 \fBstrftime\fR, except for %s, %z, and %Z, which are handled internally\&. Use
1583 \fB\-\-date=format:%c\fR
1584 to show the date in your system locale\(cqs preferred format\&. See the
1585 \fBstrftime\fR
1586 manual for a complete list of format placeholders\&. When using
1587 \fB\-local\fR, the correct syntax is
1588 \fB\-\-date=format\-local:\&.\&.\&.\fR\&.
1590 \fB\-\-date=default\fR
1591 is the default format, and is based on ctime(3) output\&. It shows a single line with three\-letter day of the week, three\-letter month, day\-of\-month, hour\-minute\-seconds in "HH:MM:SS" format, followed by 4\-digit year, plus timezone information, unless the local time zone is used, e\&.g\&.
1592 \fBThu Jan 1 00:00:00 1970 +0000\fR\&.
1595 \-\-parents
1596 .RS 4
1597 Print also the parents of the commit (in the form "commit parent\&...")\&. Also enables parent rewriting, see
1598 \fIHistory Simplification\fR
1599 above\&.
1602 \-\-children
1603 .RS 4
1604 Print also the children of the commit (in the form "commit child\&...")\&. Also enables parent rewriting, see
1605 \fIHistory Simplification\fR
1606 above\&.
1609 \-\-left\-right
1610 .RS 4
1611 Mark which side of a symmetric difference a commit is reachable from\&. Commits from the left side are prefixed with
1612 \fB<\fR
1613 and those from the right with
1614 \fB>\fR\&. If combined with
1615 \fB\-\-boundary\fR, those commits are prefixed with
1616 \fB\-\fR\&.
1618 For example, if you have this topology:
1620 .if n \{\
1621 .RS 4
1624              y\-\-\-b\-\-\-b  branch B
1625             / \e /
1626            /   \&.
1627           /   / \e
1628          o\-\-\-x\-\-\-a\-\-\-a  branch A
1630 .if n \{\
1634 you would get an output like this:
1636 .if n \{\
1637 .RS 4
1640         $ git rev\-list \-\-left\-right \-\-boundary \-\-pretty=oneline A\&.\&.\&.B
1642         >bbbbbbb\&.\&.\&. 3rd on b
1643         >bbbbbbb\&.\&.\&. 2nd on b
1644         <aaaaaaa\&.\&.\&. 3rd on a
1645         <aaaaaaa\&.\&.\&. 2nd on a
1646         \-yyyyyyy\&.\&.\&. 1st on b
1647         \-xxxxxxx\&.\&.\&. 1st on a
1649 .if n \{\
1655 \-\-graph
1656 .RS 4
1657 Draw a text\-based graphical representation of the commit history on the left hand side of the output\&. This may cause extra lines to be printed in between commits, in order for the graph history to be drawn properly\&. Cannot be combined with
1658 \fB\-\-no\-walk\fR\&.
1660 This enables parent rewriting, see
1661 \fIHistory Simplification\fR
1662 above\&.
1664 This implies the
1665 \fB\-\-topo\-order\fR
1666 option by default, but the
1667 \fB\-\-date\-order\fR
1668 option may also be specified\&.
1671 \-\-show\-linear\-break[=<barrier>]
1672 .RS 4
1673 When \-\-graph is not used, all history branches are flattened which can make it hard to see that the two consecutive commits do not belong to a linear branch\&. This option puts a barrier in between them in that case\&. If
1674 \fB<barrier>\fR
1675 is specified, it is the string that will be shown instead of the default one\&.
1677 .SH "OUTPUT"
1679 When there are no conflicts, the output of this command is usable as input to \fBgit update\-ref \-\-stdin\fR\&. It is of the form:
1681 .if n \{\
1682 .RS 4
1685 update refs/heads/branch1 ${NEW_branch1_HASH} ${OLD_branch1_HASH}
1686 update refs/heads/branch2 ${NEW_branch2_HASH} ${OLD_branch2_HASH}
1687 update refs/heads/branch3 ${NEW_branch3_HASH} ${OLD_branch3_HASH}
1689 .if n \{\
1693 where the number of refs updated depends on the arguments passed and the shape of the history being replayed\&. When using \fB\-\-advance\fR, the number of refs updated is always one, but for \fB\-\-onto\fR, it can be one or more (rebasing multiple branches simultaneously is supported)\&.
1694 .SH "EXIT STATUS"
1696 For a successful, non\-conflicted replay, the exit status is 0\&. When the replay has conflicts, the exit status is 1\&. If the replay is not able to complete (or start) due to some kind of error, the exit status is something other than 0 or 1\&.
1697 .SH "EXAMPLES"
1699 To simply rebase \fBmybranch\fR onto \fBtarget\fR:
1701 .if n \{\
1702 .RS 4
1705 $ git replay \-\-onto target origin/main\&.\&.mybranch
1706 update refs/heads/mybranch ${NEW_mybranch_HASH} ${OLD_mybranch_HASH}
1708 .if n \{\
1713 To cherry\-pick the commits from mybranch onto target:
1715 .if n \{\
1716 .RS 4
1719 $ git replay \-\-advance target origin/main\&.\&.mybranch
1720 update refs/heads/target ${NEW_target_HASH} ${OLD_target_HASH}
1722 .if n \{\
1727 Note that the first two examples replay the exact same commits and on top of the exact same new base, they only differ in that the first provides instructions to make mybranch point at the new commits and the second provides instructions to make target point at them\&.
1729 What if you have a stack of branches, one depending upon another, and you\(cqd really like to rebase the whole set?
1731 .if n \{\
1732 .RS 4
1735 $ git replay \-\-contained \-\-onto origin/main origin/main\&.\&.tipbranch
1736 update refs/heads/branch1 ${NEW_branch1_HASH} ${OLD_branch1_HASH}
1737 update refs/heads/branch2 ${NEW_branch2_HASH} ${OLD_branch2_HASH}
1738 update refs/heads/tipbranch ${NEW_tipbranch_HASH} ${OLD_tipbranch_HASH}
1740 .if n \{\
1745 When calling \fBgit replay\fR, one does not need to specify a range of commits to replay using the syntax \fBA\&.\&.B\fR; any range expression will do:
1747 .if n \{\
1748 .RS 4
1751 $ git replay \-\-onto origin/main ^base branch1 branch2 branch3
1752 update refs/heads/branch1 ${NEW_branch1_HASH} ${OLD_branch1_HASH}
1753 update refs/heads/branch2 ${NEW_branch2_HASH} ${OLD_branch2_HASH}
1754 update refs/heads/branch3 ${NEW_branch3_HASH} ${OLD_branch3_HASH}
1756 .if n \{\
1761 This will simultaneously rebase \fBbranch1\fR, \fBbranch2\fR, and \fBbranch3\fR, all commits they have since \fBbase\fR, playing them on top of \fBorigin/main\fR\&. These three branches may have commits on top of \fBbase\fR that they have in common, but that does not need to be the case\&.
1762 .SH "GIT"
1764 Part of the \fBgit\fR(1) suite