Autogenerated manpages for v2.47.0-336-g6ea2d
[git-manpages.git] / man1 / git-rev-list.1
blobb64b518a21c61538d93eacd0277a2cf2ac315b0f
1 '\" t
2 .\"     Title: git-rev-list
3 .\"    Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
4 .\" Generator: DocBook XSL Stylesheets v1.79.2 <http://docbook.sf.net/>
5 .\"      Date: 2024-11-25
6 .\"    Manual: Git Manual
7 .\"    Source: Git 2.47.0.336.g6ea2d9d271
8 .\"  Language: English
9 .\"
10 .TH "GIT\-REV\-LIST" "1" "2024-11-25" "Git 2\&.47\&.0\&.336\&.g6ea2d9" "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-rev-list \- Lists commit objects in reverse chronological order
32 .SH "SYNOPSIS"
33 .sp
34 .nf
35 \fIgit rev\-list\fR [<options>] <commit>\&...\: [\-\-] [<path>\&...\:]
36 .fi
37 .SH "DESCRIPTION"
38 .sp
39 List commits that are reachable by following the \fBparent\fR links from the given commit(s), but exclude commits that are reachable from the one(s) given with a \fI^\fR in front of them\&. The output is given in reverse chronological order by default\&.
40 .sp
41 You can think of this as a set operation\&. Commits reachable from any of the commits given on the command line form a set, and then commits reachable from any of the ones given with \fI^\fR in front are subtracted from that set\&. The remaining commits are what comes out in the command\(cqs output\&. Various other options and paths parameters can be used to further limit the result\&.
42 .sp
43 Thus, the following command:
44 .sp
45 .if n \{\
46 .RS 4
47 .\}
48 .nf
49 $ git rev\-list foo bar ^baz
50 .fi
51 .if n \{\
52 .RE
53 .\}
54 .sp
55 means "list all the commits which are reachable from \fIfoo\fR or \fIbar\fR, but not from \fIbaz\fR"\&.
56 .sp
57 A special notation "\fI<commit1>\fR\&.\&.\fI<commit2>\fR" can be used as a short\-hand for "^\fI<commit1>\fR \fI<commit2>\fR"\&. For example, either of the following may be used interchangeably:
58 .sp
59 .if n \{\
60 .RS 4
61 .\}
62 .nf
63 $ git rev\-list origin\&.\&.HEAD
64 $ git rev\-list HEAD ^origin
65 .fi
66 .if n \{\
67 .RE
68 .\}
69 .sp
70 Another special notation is "\fI<commit1>\fR\&...\:\fI<commit2>\fR" which is useful for merges\&. The resulting set of commits is the symmetric difference between the two operands\&. The following two commands are equivalent:
71 .sp
72 .if n \{\
73 .RS 4
74 .\}
75 .nf
76 $ git rev\-list A B \-\-not $(git merge\-base \-\-all A B)
77 $ git rev\-list A\&.\&.\&.B
78 .fi
79 .if n \{\
80 .RE
81 .\}
82 .sp
83 \fIrev\-list\fR is an essential Git command, since it provides the ability to build and traverse commit ancestry graphs\&. For this reason, it has a lot of different options that enable it to be used by commands as different as \fIgit bisect\fR and \fIgit repack\fR\&.
84 .SH "OPTIONS"
85 .SS "Commit Limiting"
86 .sp
87 Besides specifying a range of commits that should be listed using the special notations explained in the description, additional commit limiting may be applied\&.
88 .sp
89 Using more options generally further limits the output (e\&.g\&. \fB\-\-since=\fR\fI<date1>\fR limits to commits newer than \fI<date1>\fR, and using it with \fB\-\-grep=\fR\fI<pattern>\fR further limits to commits whose log message has a line that matches \fI<pattern>\fR), unless otherwise noted\&.
90 .sp
91 Note that these are applied before commit ordering and formatting options, such as \fB\-\-reverse\fR\&.
92 .PP
93 \-<number>, \-n <number>, \-\-max\-count=<number>
94 .RS 4
95 Limit the number of commits to output\&.
96 .RE
97 .PP
98 \-\-skip=<number>
99 .RS 4
100 Skip
101 \fInumber\fR
102 commits before starting to show the commit output\&.
105 \-\-since=<date>, \-\-after=<date>
106 .RS 4
107 Show commits more recent than a specific date\&.
110 \-\-since\-as\-filter=<date>
111 .RS 4
112 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\&.
115 \-\-until=<date>, \-\-before=<date>
116 .RS 4
117 Show commits older than a specific date\&.
120 \-\-max\-age=<timestamp>, \-\-min\-age=<timestamp>
121 .RS 4
122 Limit the commits output to specified time range\&.
125 \-\-author=<pattern>, \-\-committer=<pattern>
126 .RS 4
127 Limit the commits output to ones with author/committer header lines that match the specified pattern (regular expression)\&. With more than one
128 \fB\-\-author=\fR\fI<pattern>\fR, commits whose author matches any of the given patterns are chosen (similarly for multiple
129 \fB\-\-committer=\fR\fI<pattern>\fR)\&.
132 \-\-grep\-reflog=<pattern>
133 .RS 4
134 Limit the commits output to ones with reflog entries that match the specified pattern (regular expression)\&. With more than one
135 \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
136 \fB\-\-walk\-reflogs\fR
137 is in use\&.
140 \-\-grep=<pattern>
141 .RS 4
142 Limit the commits output to ones with a log message that matches the specified pattern (regular expression)\&. With more than one
143 \fB\-\-grep=\fR\fI<pattern>\fR, commits whose message matches any of the given patterns are chosen (but see
144 \fB\-\-all\-match\fR)\&.
147 \-\-all\-match
148 .RS 4
149 Limit the commits output to ones that match all given
150 \fB\-\-grep\fR, instead of ones that match at least one\&.
153 \-\-invert\-grep
154 .RS 4
155 Limit the commits output to ones with a log message that do not match the pattern specified with
156 \fB\-\-grep=\fR\fI<pattern>\fR\&.
159 \-i, \-\-regexp\-ignore\-case
160 .RS 4
161 Match the regular expression limiting patterns without regard to letter case\&.
164 \-\-basic\-regexp
165 .RS 4
166 Consider the limiting patterns to be basic regular expressions; this is the default\&.
169 \-E, \-\-extended\-regexp
170 .RS 4
171 Consider the limiting patterns to be extended regular expressions instead of the default basic regular expressions\&.
174 \-F, \-\-fixed\-strings
175 .RS 4
176 Consider the limiting patterns to be fixed strings (don\(cqt interpret pattern as a regular expression)\&.
179 \-P, \-\-perl\-regexp
180 .RS 4
181 Consider the limiting patterns to be Perl\-compatible regular expressions\&.
183 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\&.
186 \-\-remove\-empty
187 .RS 4
188 Stop when a given path disappears from the tree\&.
191 \-\-merges
192 .RS 4
193 Print only merge commits\&. This is exactly the same as
194 \fB\-\-min\-parents=2\fR\&.
197 \-\-no\-merges
198 .RS 4
199 Do not print commits with more than one parent\&. This is exactly the same as
200 \fB\-\-max\-parents=1\fR\&.
203 \-\-min\-parents=<number>, \-\-max\-parents=<number>, \-\-no\-min\-parents, \-\-no\-max\-parents
204 .RS 4
205 Show only commits which have at least (or at most) that many parent commits\&. In particular,
206 \fB\-\-max\-parents=1\fR
207 is the same as
208 \fB\-\-no\-merges\fR,
209 \fB\-\-min\-parents=2\fR
210 is the same as
211 \fB\-\-merges\fR\&.
212 \fB\-\-max\-parents=0\fR
213 gives all root commits and
214 \fB\-\-min\-parents=3\fR
215 all octopus merges\&.
217 \fB\-\-no\-min\-parents\fR
219 \fB\-\-no\-max\-parents\fR
220 reset these limits (to no limit) again\&. Equivalent forms are
221 \fB\-\-min\-parents=0\fR
222 (any commit has 0 or more parents) and
223 \fB\-\-max\-parents=\-1\fR
224 (negative numbers denote no upper limit)\&.
227 \-\-first\-parent
228 .RS 4
229 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\&.
232 \-\-exclude\-first\-parent\-only
233 .RS 4
234 When finding commits to exclude (with a
235 \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\&.
238 \-\-not
239 .RS 4
240 Reverses the meaning of the
241 \fI^\fR
242 prefix (or lack thereof) for all following revision specifiers, up to the next
243 \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\&.
246 \-\-all
247 .RS 4
248 Pretend as if all the refs in
249 \fBrefs/\fR, along with
250 \fBHEAD\fR, are listed on the command line as
251 \fI<commit>\fR\&.
254 \-\-branches[=<pattern>]
255 .RS 4
256 Pretend as if all the refs in
257 \fBrefs/heads\fR
258 are listed on the command line as
259 \fI<commit>\fR\&. If
260 \fI<pattern>\fR
261 is given, limit branches to ones matching given shell glob\&. If pattern lacks
262 \fI?\fR,
263 \fI*\fR, or
264 \fI[\fR,
265 \fI/*\fR
266 at the end is implied\&.
269 \-\-tags[=<pattern>]
270 .RS 4
271 Pretend as if all the refs in
272 \fBrefs/tags\fR
273 are listed on the command line as
274 \fI<commit>\fR\&. If
275 \fI<pattern>\fR
276 is given, limit tags to ones matching given shell glob\&. If pattern lacks
277 \fI?\fR,
278 \fI*\fR, or
279 \fI[\fR,
280 \fI/*\fR
281 at the end is implied\&.
284 \-\-remotes[=<pattern>]
285 .RS 4
286 Pretend as if all the refs in
287 \fBrefs/remotes\fR
288 are listed on the command line as
289 \fI<commit>\fR\&. If
290 \fI<pattern>\fR
291 is given, limit remote\-tracking branches to ones matching given shell glob\&. If pattern lacks
292 \fI?\fR,
293 \fI*\fR, or
294 \fI[\fR,
295 \fI/*\fR
296 at the end is implied\&.
299 \-\-glob=<glob\-pattern>
300 .RS 4
301 Pretend as if all the refs matching shell glob
302 \fI<glob\-pattern>\fR
303 are listed on the command line as
304 \fI<commit>\fR\&. Leading
305 \fIrefs/\fR, is automatically prepended if missing\&. If pattern lacks
306 \fI?\fR,
307 \fI*\fR, or
308 \fI[\fR,
309 \fI/*\fR
310 at the end is implied\&.
313 \-\-exclude=<glob\-pattern>
314 .RS 4
315 Do not include refs matching
316 \fI<glob\-pattern>\fR
317 that the next
318 \fB\-\-all\fR,
319 \fB\-\-branches\fR,
320 \fB\-\-tags\fR,
321 \fB\-\-remotes\fR, or
322 \fB\-\-glob\fR
323 would otherwise consider\&. Repetitions of this option accumulate exclusion patterns up to the next
324 \fB\-\-all\fR,
325 \fB\-\-branches\fR,
326 \fB\-\-tags\fR,
327 \fB\-\-remotes\fR, or
328 \fB\-\-glob\fR
329 option (other options or arguments do not clear accumulated patterns)\&.
331 The patterns given should not begin with
332 \fBrefs/heads\fR,
333 \fBrefs/tags\fR, or
334 \fBrefs/remotes\fR
335 when applied to
336 \fB\-\-branches\fR,
337 \fB\-\-tags\fR, or
338 \fB\-\-remotes\fR, respectively, and they must begin with
339 \fBrefs/\fR
340 when applied to
341 \fB\-\-glob\fR
343 \fB\-\-all\fR\&. If a trailing
344 \fI/*\fR
345 is intended, it must be given explicitly\&.
348 \-\-exclude\-hidden=[fetch|receive|uploadpack]
349 .RS 4
350 Do not include refs that would be hidden by
351 \fBgit\-fetch\fR,
352 \fBgit\-receive\-pack\fR
354 \fBgit\-upload\-pack\fR
355 by consulting the appropriate
356 \fBfetch\&.hideRefs\fR,
357 \fBreceive\&.hideRefs\fR
359 \fBuploadpack\&.hideRefs\fR
360 configuration along with
361 \fBtransfer\&.hideRefs\fR
362 (see
363 \fBgit-config\fR(1))\&. This option affects the next pseudo\-ref option
364 \fB\-\-all\fR
366 \fB\-\-glob\fR
367 and is cleared after processing them\&.
370 \-\-reflog
371 .RS 4
372 Pretend as if all objects mentioned by reflogs are listed on the command line as
373 \fI<commit>\fR\&.
376 \-\-alternate\-refs
377 .RS 4
378 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
379 \fBobjects/info/alternates\fR\&. The set of included objects may be modified by
380 \fBcore\&.alternateRefsCommand\fR, etc\&. See
381 \fBgit-config\fR(1)\&.
384 \-\-single\-worktree
385 .RS 4
386 By default, all working trees will be examined by the following options when there are more than one (see
387 \fBgit-worktree\fR(1)):
388 \fB\-\-all\fR,
389 \fB\-\-reflog\fR
391 \fB\-\-indexed\-objects\fR\&. This option forces them to examine the current working tree only\&.
394 \-\-ignore\-missing
395 .RS 4
396 Upon seeing an invalid object name in the input, pretend as if the bad input was not given\&.
399 \-\-stdin
400 .RS 4
401 In addition to getting arguments from the command line, read them from standard input as well\&. This accepts commits and pseudo\-options like
402 \fB\-\-all\fR
404 \fB\-\-glob=\fR\&. When a
405 \fB\-\-\fR
406 separator is seen, the following input is treated as paths and used to limit the result\&. Flags like
407 \fB\-\-not\fR
408 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\&.
411 \-\-quiet
412 .RS 4
413 Don\(cqt print anything to standard output\&. This form is primarily meant to allow the caller to test the exit status to see if a range of objects is fully connected (or not)\&. It is faster than redirecting stdout to
414 \fB/dev/null\fR
415 as the output does not have to be formatted\&.
418 \-\-disk\-usage, \-\-disk\-usage=human
419 .RS 4
420 Suppress normal output; instead, print the sum of the bytes used for on\-disk storage by the selected commits or objects\&. This is equivalent to piping the output into
421 \fBgit\fR
422 \fBcat\-file\fR
423 \fB\-\-batch\-check=\fR\*(Aq%(\fBobjectsize:disk\fR)\*(Aq, except that it runs much faster (especially with
424 \fB\-\-use\-bitmap\-index\fR)\&. See the
425 \fBCAVEATS\fR
426 section in
427 \fBgit-cat-file\fR(1)
428 for the limitations of what "on\-disk storage" means\&. With the optional value
429 \fBhuman\fR, on\-disk storage size is shown in human\-readable string(e\&.g\&. 12\&.24 Kib, 3\&.50 Mib)\&.
432 \-\-cherry\-mark
433 .RS 4
434 Like
435 \fB\-\-cherry\-pick\fR
436 (see below) but mark equivalent commits with
437 \fB=\fR
438 rather than omitting them, and inequivalent ones with
439 \fB+\fR\&.
442 \-\-cherry\-pick
443 .RS 4
444 Omit any commit that introduces the same change as another commit on the
445 \(lqother side\(rq
446 when the set of commits are limited with symmetric difference\&.
448 For example, if you have two branches,
449 \fBA\fR
451 \fBB\fR, a usual way to list all commits on only one side of them is with
452 \fB\-\-left\-right\fR
453 (see the example below in the description of the
454 \fB\-\-left\-right\fR
455 option)\&. However, it shows the commits that were cherry\-picked from the other branch (for example,
456 \(lq3rd on b\(rq
457 may be cherry\-picked from branch A)\&. With this option, such pairs of commits are excluded from the output\&.
460 \-\-left\-only, \-\-right\-only
461 .RS 4
462 List only commits on the respective side of a symmetric difference, i\&.e\&. only those which would be marked < resp\&. > by
463 \fB\-\-left\-right\fR\&.
465 For example,
466 \fB\-\-cherry\-pick\fR
467 \fB\-\-right\-only\fR
468 \fBA\fR\fB\&.\&.\&.\fR\fBB\fR
469 omits those commits from
470 \fBB\fR
471 which are in
472 \fBA\fR
473 or are patch\-equivalent to a commit in
474 \fBA\fR\&. In other words, this lists the
475 \fB+\fR
476 commits from
477 \fBgit\fR
478 \fBcherry\fR
479 \fBA\fR
480 \fBB\fR\&. More precisely,
481 \fB\-\-cherry\-pick\fR
482 \fB\-\-right\-only\fR
483 \fB\-\-no\-merges\fR
484 gives the exact list\&.
487 \-\-cherry
488 .RS 4
489 A synonym for
490 \fB\-\-right\-only\fR
491 \fB\-\-cherry\-mark\fR
492 \fB\-\-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
493 \fBgit\fR
494 \fBlog\fR
495 \fB\-\-cherry\fR
496 \fBupstream\fR\fB\&.\&.\&.\fR\fBmybranch\fR, similar to
497 \fBgit\fR
498 \fBcherry\fR
499 \fBupstream\fR
500 \fBmybranch\fR\&.
503 \-g, \-\-walk\-reflogs
504 .RS 4
505 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,
506 \fI^commit\fR,
507 \fIcommit1\&.\&.commit2\fR, and
508 \fIcommit1\&.\&.\&.commit2\fR
509 notations cannot be used)\&.
511 With
512 \fB\-\-pretty\fR
513 format other than
514 \fBoneline\fR
516 \fBreference\fR
517 (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
518 \fBref@\fR{\fI<Nth>\fR} (where
519 \fI<Nth>\fR
520 is the reverse\-chronological index in the reflog) or as
521 \fBref@\fR{\fI<timestamp>\fR} (with the
522 \fI<timestamp>\fR
523 for that entry), depending on a few rules:
525 .RS 4
526 .ie n \{\
527 \h'-04' 1.\h'+01'\c
529 .el \{\
530 .sp -1
531 .IP "  1." 4.2
533 If the starting point is specified as
534 \fBref@\fR{\fI<Nth>\fR}, show the index format\&.
537 .RS 4
538 .ie n \{\
539 \h'-04' 2.\h'+01'\c
541 .el \{\
542 .sp -1
543 .IP "  2." 4.2
545 If the starting point was specified as
546 \fBref@\fR{now}, show the timestamp format\&.
549 .RS 4
550 .ie n \{\
551 \h'-04' 3.\h'+01'\c
553 .el \{\
554 .sp -1
555 .IP "  3." 4.2
557 If neither was used, but
558 \fB\-\-date\fR
559 was given on the command line, show the timestamp in the format requested by
560 \fB\-\-date\fR\&.
563 .RS 4
564 .ie n \{\
565 \h'-04' 4.\h'+01'\c
567 .el \{\
568 .sp -1
569 .IP "  4." 4.2
571 Otherwise, show the index format\&.
574 Under
575 \fB\-\-pretty=oneline\fR, the commit message is prefixed with this information on the same line\&. This option cannot be combined with
576 \fB\-\-reverse\fR\&. See also
577 \fBgit-reflog\fR(1)\&.
579 Under
580 \fB\-\-pretty=reference\fR, this information will not be shown at all\&.
583 \-\-merge
584 .RS 4
585 Show commits touching conflicted paths in the range
586 \fBHEAD\fR\fB\&.\&.\&.\fR\fI<other>\fR, where
587 \fI<other>\fR
588 is the first existing pseudoref in
589 \fBMERGE_HEAD\fR,
590 \fBCHERRY_PICK_HEAD\fR,
591 \fBREVERT_HEAD\fR
593 \fBREBASE_HEAD\fR\&. Only works when the index has unmerged entries\&. This option can be used to show relevant commits when resolving conflicts from a 3\-way merge\&.
596 \-\-boundary
597 .RS 4
598 Output excluded boundary commits\&. Boundary commits are prefixed with
599 \fB\-\fR\&.
602 \-\-use\-bitmap\-index
603 .RS 4
604 Try to speed up the traversal using the pack bitmap index (if one is available)\&. Note that when traversing with
605 \fB\-\-objects\fR, trees and blobs will not have their associated path printed\&.
608 \-\-progress=<header>
609 .RS 4
610 Show progress reports on stderr as objects are considered\&. The
611 \fI<header>\fR
612 text will be printed with each progress update\&.
614 .SS "History Simplification"
616 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\&.
618 The following options select the commits to be shown:
620 <paths>
621 .RS 4
622 Commits modifying the given <paths> are selected\&.
625 \-\-simplify\-by\-decoration
626 .RS 4
627 Commits that are referred by some branch or tag are selected\&.
630 Note that extra commits can be shown to give a meaningful history\&.
632 The following options affect the way the simplification is performed:
634 Default mode
635 .RS 4
636 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)
639 \-\-show\-pulls
640 .RS 4
641 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\&.
644 \-\-full\-history
645 .RS 4
646 Same as the default mode, but does not prune some history\&.
649 \-\-dense
650 .RS 4
651 Only the selected commits are shown, plus some to have a meaningful history\&.
654 \-\-sparse
655 .RS 4
656 All commits in the simplified history are shown\&.
659 \-\-simplify\-merges
660 .RS 4
661 Additional option to
662 \fB\-\-full\-history\fR
663 to remove some needless merges from the resulting history, as there are no selected commits contributing to this merge\&.
666 \-\-ancestry\-path[=<commit>]
667 .RS 4
668 When given a range of commits to display (e\&.g\&.
669 \fIcommit1\&.\&.commit2\fR
671 \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
672 \fIcommit1\fR
673 (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\&.
676 A more detailed explanation follows\&.
678 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\&.)
680 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:
682 .if n \{\
683 .RS 4
686           \&.\-A\-\-\-M\-\-\-N\-\-\-O\-\-\-P\-\-\-Q
687          /     /   /   /   /   /
688         I     B   C   D   E   Y
689          \e   /   /   /   /   /
690           `\-\-\-\-\-\-\-\-\-\-\-\-\-\*(Aq   X
692 .if n \{\
696 The horizontal line of history A\-\-\-Q is taken to be the first parent of each merge\&. The commits are:
698 .RS 4
699 .ie n \{\
700 \h'-04'\(bu\h'+03'\c
702 .el \{\
703 .sp -1
704 .IP \(bu 2.3
706 \fBI\fR
707 is the initial commit, in which
708 \fBfoo\fR
709 exists with contents
710 \(lqasdf\(rq, and a file
711 \fBquux\fR
712 exists with contents
713 \(lqquux\(rq\&. Initial commits are compared to an empty tree, so
714 \fBI\fR
715 is !TREESAME\&.
718 .RS 4
719 .ie n \{\
720 \h'-04'\(bu\h'+03'\c
722 .el \{\
723 .sp -1
724 .IP \(bu 2.3
727 \fBA\fR,
728 \fBfoo\fR
729 contains just
730 \(lqfoo\(rq\&.
733 .RS 4
734 .ie n \{\
735 \h'-04'\(bu\h'+03'\c
737 .el \{\
738 .sp -1
739 .IP \(bu 2.3
741 \fBB\fR
742 contains the same change as
743 \fBA\fR\&. Its merge
744 \fBM\fR
745 is trivial and hence TREESAME to all parents\&.
748 .RS 4
749 .ie n \{\
750 \h'-04'\(bu\h'+03'\c
752 .el \{\
753 .sp -1
754 .IP \(bu 2.3
756 \fBC\fR
757 does not change
758 \fBfoo\fR, but its merge
759 \fBN\fR
760 changes it to
761 \(lqfoobar\(rq, so it is not TREESAME to any parent\&.
764 .RS 4
765 .ie n \{\
766 \h'-04'\(bu\h'+03'\c
768 .el \{\
769 .sp -1
770 .IP \(bu 2.3
772 \fBD\fR
773 sets
774 \fBfoo\fR
776 \(lqbaz\(rq\&. Its merge
777 \fBO\fR
778 combines the strings from
779 \fBN\fR
781 \fBD\fR
783 \(lqfoobarbaz\(rq; i\&.e\&., it is not TREESAME to any parent\&.
786 .RS 4
787 .ie n \{\
788 \h'-04'\(bu\h'+03'\c
790 .el \{\
791 .sp -1
792 .IP \(bu 2.3
794 \fBE\fR
795 changes
796 \fBquux\fR
798 \(lqxyzzy\(rq, and its merge
799 \fBP\fR
800 combines the strings to
801 \(lqquux xyzzy\(rq\&.
802 \fBP\fR
803 is TREESAME to
804 \fBO\fR, but not to
805 \fBE\fR\&.
808 .RS 4
809 .ie n \{\
810 \h'-04'\(bu\h'+03'\c
812 .el \{\
813 .sp -1
814 .IP \(bu 2.3
816 \fBX\fR
817 is an independent root commit that added a new file
818 \fBside\fR, and
819 \fBY\fR
820 modified it\&.
821 \fBY\fR
822 is TREESAME to
823 \fBX\fR\&. Its merge
824 \fBQ\fR
825 added
826 \fBside\fR
828 \fBP\fR, and
829 \fBQ\fR
830 is TREESAME to
831 \fBP\fR, but not to
832 \fBY\fR\&.
835 \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\&.
837 Default mode
838 .RS 4
839 Commits are included if they are not TREESAME to any parent (though this can be changed, see
840 \fB\-\-sparse\fR
841 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\&.
843 This results in:
845 .if n \{\
846 .RS 4
849           \&.\-A\-\-\-N\-\-\-O
850          /     /   /
851         I\-\-\-\-\-\-\-\-\-D
853 .if n \{\
857 Note how the rule to only follow the TREESAME parent, if one is available, removed
858 \fBB\fR
859 from consideration entirely\&.
860 \fBC\fR
861 was considered via
862 \fBN\fR, but is TREESAME\&. Root commits are compared to an empty tree, so
863 \fBI\fR
864 is !TREESAME\&.
866 Parent/child relations are only visible with
867 \fB\-\-parents\fR, but that does not affect the commits selected in default mode, so we have shown the parent lines\&.
870 \-\-full\-history without parent rewriting
871 .RS 4
872 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
874 .if n \{\
875 .RS 4
878         I  A  B  N  D  O  P  Q
880 .if n \{\
884 \fBM\fR
885 was excluded because it is TREESAME to both parents\&.
886 \fBE\fR,
887 \fBC\fR
889 \fBB\fR
890 were all walked, but only
891 \fBB\fR
892 was !TREESAME, so the others do not appear\&.
894 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\&.
897 \-\-full\-history with parent rewriting
898 .RS 4
899 Ordinary commits are only included if they are !TREESAME (though this can be changed, see
900 \fB\-\-sparse\fR
901 below)\&.
903 Merges are always included\&. However, their parent list is rewritten: Along each parent, prune away commits that are not included themselves\&. This results in
905 .if n \{\
906 .RS 4
909           \&.\-A\-\-\-M\-\-\-N\-\-\-O\-\-\-P\-\-\-Q
910          /     /   /   /   /
911         I     B   /   D   /
912          \e   /   /   /   /
913           `\-\-\-\-\-\-\-\-\-\-\-\-\-\*(Aq
915 .if n \{\
919 Compare to
920 \fB\-\-full\-history\fR
921 without rewriting above\&. Note that
922 \fBE\fR
923 was pruned away because it is TREESAME, but the parent list of P was rewritten to contain
924 \fBE\fR\*(Aqs parent
925 \fBI\fR\&. The same happened for
926 \fBC\fR
928 \fBN\fR, and
929 \fBX\fR,
930 \fBY\fR
932 \fBQ\fR\&.
935 In addition to the above settings, you can change whether TREESAME affects inclusion:
937 \-\-dense
938 .RS 4
939 Commits that are walked are included if they are not TREESAME to any parent\&.
942 \-\-sparse
943 .RS 4
944 All commits that are walked are included\&.
946 Note that without
947 \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\&.
950 \-\-simplify\-merges
951 .RS 4
952 First, build a history graph in the same way that
953 \fB\-\-full\-history\fR
954 with parent rewriting does (see above)\&.
956 Then simplify each commit
957 \fBC\fR
958 to its replacement
959 \fBC\fR\*(Aq in the final history according to the following rules:
961 .RS 4
962 .ie n \{\
963 \h'-04'\(bu\h'+03'\c
965 .el \{\
966 .sp -1
967 .IP \(bu 2.3
970 \fBC\fR\*(Aq to
971 \fBC\fR\&.
974 .RS 4
975 .ie n \{\
976 \h'-04'\(bu\h'+03'\c
978 .el \{\
979 .sp -1
980 .IP \(bu 2.3
982 Replace each parent
983 \fBP\fR
985 \fBC\fR\*(Aq with its simplification
986 \fBP\fR\*(Aq\&. 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\&.
989 .RS 4
990 .ie n \{\
991 \h'-04'\(bu\h'+03'\c
993 .el \{\
994 .sp -1
995 .IP \(bu 2.3
997 If after this parent rewriting,
998 \fBC\fR\*(Aq 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\&.
1001 The effect of this is best shown by way of comparing to
1002 \fB\-\-full\-history\fR
1003 with parent rewriting\&. The example turns into:
1005 .if n \{\
1006 .RS 4
1009           \&.\-A\-\-\-M\-\-\-N\-\-\-O
1010          /     /       /
1011         I     B       D
1012          \e   /       /
1013           `\-\-\-\-\-\-\-\-\-\*(Aq
1015 .if n \{\
1019 Note the major differences in
1020 \fBN\fR,
1021 \fBP\fR, and
1022 \fBQ\fR
1023 over
1024 \fB\-\-full\-history\fR:
1026 .RS 4
1027 .ie n \{\
1028 \h'-04'\(bu\h'+03'\c
1030 .el \{\
1031 .sp -1
1032 .IP \(bu 2.3
1034 \fBN\fR\*(Aqs parent list had
1035 \fBI\fR
1036 removed, because it is an ancestor of the other parent
1037 \fBM\fR\&. Still,
1038 \fBN\fR
1039 remained because it is !TREESAME\&.
1042 .RS 4
1043 .ie n \{\
1044 \h'-04'\(bu\h'+03'\c
1046 .el \{\
1047 .sp -1
1048 .IP \(bu 2.3
1050 \fBP\fR\*(Aqs parent list similarly had
1051 \fBI\fR
1052 removed\&.
1053 \fBP\fR
1054 was then removed completely, because it had one parent and is TREESAME\&.
1057 .RS 4
1058 .ie n \{\
1059 \h'-04'\(bu\h'+03'\c
1061 .el \{\
1062 .sp -1
1063 .IP \(bu 2.3
1065 \fBQ\fR\*(Aqs parent list had
1066 \fBY\fR
1067 simplified to
1068 \fBX\fR\&.
1069 \fBX\fR
1070 was then removed, because it was a TREESAME root\&.
1071 \fBQ\fR
1072 was then removed completely, because it had one parent and is TREESAME\&.
1076 There is another simplification mode available:
1078 \-\-ancestry\-path[=<commit>]
1079 .RS 4
1080 Limit the displayed commits to those which are an ancestor of <commit>, or which are a descendant of <commit>, or are <commit> itself\&.
1082 As an example use case, consider the following commit history:
1084 .if n \{\
1085 .RS 4
1088             D\-\-\-E\-\-\-\-\-\-\-F
1089            /     \e       \e
1090           B\-\-\-C\-\-\-G\-\-\-H\-\-\-I\-\-\-J
1091          /                     \e
1092         A\-\-\-\-\-\-\-K\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-L\-\-M
1094 .if n \{\
1098 A regular
1099 \fID\&.\&.M\fR
1100 computes the set of commits that are ancestors of
1101 \fBM\fR, but excludes the ones that are ancestors of
1102 \fBD\fR\&. This is useful to see what happened to the history leading to
1103 \fBM\fR
1104 since
1105 \fBD\fR, in the sense that
1106 \(lqwhat does \fBM\fR have that did not exist in \fBD\fR\(rq\&. The result in this example would be all the commits, except
1107 \fBA\fR
1109 \fBB\fR
1110 (and
1111 \fBD\fR
1112 itself, of course)\&.
1114 When we want to find out what commits in
1115 \fBM\fR
1116 are contaminated with the bug introduced by
1117 \fBD\fR
1118 and need fixing, however, we might want to view only the subset of
1119 \fID\&.\&.M\fR
1120 that are actually descendants of
1121 \fBD\fR, i\&.e\&. excluding
1122 \fBC\fR
1124 \fBK\fR\&. This is exactly what the
1125 \fB\-\-ancestry\-path\fR
1126 option does\&. Applied to the
1127 \fID\&.\&.M\fR
1128 range, it results in:
1130 .if n \{\
1131 .RS 4
1134                 E\-\-\-\-\-\-\-F
1135                  \e       \e
1136                   G\-\-\-H\-\-\-I\-\-\-J
1137                                \e
1138                                 L\-\-M
1140 .if n \{\
1144 We can also use
1145 \fB\-\-ancestry\-path=D\fR
1146 instead of
1147 \fB\-\-ancestry\-path\fR
1148 which means the same thing when applied to the
1149 \fID\&.\&.M\fR
1150 range but is just more explicit\&.
1152 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
1153 \fBD\fR\fB\&.\&.\fR\fBM\fR
1154 which contain that topic in their ancestry path\&. So, using
1155 \fB\-\-ancestry\-path=H\fR
1156 \fBD\fR\fB\&.\&.\fR\fBM\fR
1157 for example would result in:
1159 .if n \{\
1160 .RS 4
1163                 E
1164                  \e
1165                   G\-\-\-H\-\-\-I\-\-\-J
1166                                \e
1167                                 L\-\-M
1169 .if n \{\
1173 Whereas
1174 \fB\-\-ancestry\-path=K\fR
1175 \fBD\fR\fB\&.\&.\fR\fBM\fR
1176 would result in
1178 .if n \{\
1179 .RS 4
1182                 K\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-L\-\-M
1184 .if n \{\
1189 Before discussing another option, \fB\-\-show\-pulls\fR, we need to create a new example history\&.
1191 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:
1193 .if n \{\
1194 .RS 4
1197           \&.\-A\-\-\-M\-\-\-\-\-C\-\-N\-\-\-O\-\-\-P
1198          /     / \e  \e  \e/   /   /
1199         I     B   \e  R\-\*(Aq`\-Z\*(Aq   /
1200          \e   /     \e/         /
1201           \e /      /\e        /
1202            `\-\-\-X\-\-\*(Aq  `\-\-\-Y\-\-\*(Aq
1204 .if n \{\
1208 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\&.
1210 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:
1212 .if n \{\
1213 .RS 4
1216         I\-\-\-X
1218 .if n \{\
1222 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:
1224 .if n \{\
1225 .RS 4
1228           \&.\-A\-\-\-M\-\-\-\-\-\-\-\-N\-\-\-O\-\-\-P
1229          /     / \e  \e  \e/   /   /
1230         I     B   \e  R\-\*(Aq`\-\-\*(Aq   /
1231          \e   /     \e/         /
1232           \e /      /\e        /
1233            `\-\-\-X\-\-\*(Aq  `\-\-\-\-\-\-\*(Aq
1235 .if n \{\
1239 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\&.
1241 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:
1243 .if n \{\
1244 .RS 4
1247           \&.\-A\-\-\-M\-\-\&.
1248          /     /    \e
1249         I     B      R
1250          \e   /      /
1251           \e /      /
1252            `\-\-\-X\-\-\*(Aq
1254 .if n \{\
1258 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\&.
1260 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\&.
1262 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\&.
1264 \-\-show\-pulls
1265 .RS 4
1266 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\&.
1268 When a merge commit is included by
1269 \fB\-\-show\-pulls\fR, the merge is treated as if it "pulled" the change from another branch\&. When using
1270 \fB\-\-show\-pulls\fR
1271 on this example (and no other options) the resulting graph is:
1273 .if n \{\
1274 .RS 4
1277         I\-\-\-X\-\-\-R\-\-\-N
1279 .if n \{\
1283 Here, the merge commits
1284 \fBR\fR
1286 \fBN\fR
1287 are included because they pulled the commits
1288 \fBX\fR
1290 \fBR\fR
1291 into the base branch, respectively\&. These merges are the reason the commits
1292 \fBA\fR
1294 \fBB\fR
1295 do not appear in the default history\&.
1297 When
1298 \fB\-\-show\-pulls\fR
1299 is paired with
1300 \fB\-\-simplify\-merges\fR, the graph includes all of the necessary information:
1302 .if n \{\
1303 .RS 4
1306           \&.\-A\-\-\-M\-\-\&.   N
1307          /     /    \e /
1308         I     B      R
1309          \e   /      /
1310           \e /      /
1311            `\-\-\-X\-\-\*(Aq
1313 .if n \{\
1317 Notice that since
1318 \fBM\fR
1319 is reachable from
1320 \fBR\fR, the edge from
1321 \fBN\fR
1323 \fBM\fR
1324 was simplified away\&. However,
1325 \fBN\fR
1326 still appears in the history as an important commit because it "pulled" the change
1327 \fBR\fR
1328 into the main branch\&.
1331 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)\&.
1332 .SS "Bisection Helpers"
1334 \-\-bisect
1335 .RS 4
1336 Limit output to the one commit object which is roughly halfway between included and excluded commits\&. Note that the bad bisection ref
1337 \fBrefs/bisect/bad\fR
1338 is added to the included commits (if it exists) and the good bisection refs
1339 \fBrefs/bisect/good\-\fR* are added to the excluded commits (if they exist)\&. Thus, supposing there are no refs in
1340 \fBrefs/bisect/\fR, if
1342 .if n \{\
1343 .RS 4
1346         $ git rev\-list \-\-bisect foo ^bar ^baz
1348 .if n \{\
1352 outputs
1353 \fImidpoint\fR, the output of the two commands
1355 .if n \{\
1356 .RS 4
1359         $ git rev\-list foo ^midpoint
1360         $ git rev\-list midpoint ^bar ^baz
1362 .if n \{\
1366 would be of roughly the same length\&. Finding the change which introduces a regression is thus reduced to a binary search: repeatedly generate and test new \*(Aqmidpoint\(cqs until the commit chain is of length one\&.
1369 \-\-bisect\-vars
1370 .RS 4
1371 This calculates the same as
1372 \fB\-\-bisect\fR, except that refs in
1373 \fBrefs/bisect/\fR
1374 are not used, and except that this outputs text ready to be eval\(cqed by the shell\&. These lines will assign the name of the midpoint revision to the variable
1375 \fBbisect_rev\fR, and the expected number of commits to be tested after
1376 \fBbisect_rev\fR
1377 is tested to
1378 \fBbisect_nr\fR, the expected number of commits to be tested if
1379 \fBbisect_rev\fR
1380 turns out to be good to
1381 \fBbisect_good\fR, the expected number of commits to be tested if
1382 \fBbisect_rev\fR
1383 turns out to be bad to
1384 \fBbisect_bad\fR, and the number of commits we are bisecting right now to
1385 \fBbisect_all\fR\&.
1388 \-\-bisect\-all
1389 .RS 4
1390 This outputs all the commit objects between the included and excluded commits, ordered by their distance to the included and excluded commits\&. Refs in
1391 \fBrefs/bisect/\fR
1392 are not used\&. The farthest from them is displayed first\&. (This is the only one displayed by
1393 \fB\-\-bisect\fR\&.)
1395 This is useful because it makes it easy to choose a good commit to test when you want to avoid to test some of them for some reason (they may not compile for example)\&.
1397 This option can be used along with
1398 \fB\-\-bisect\-vars\fR, in this case, after all the sorted commit objects, there will be the same text as if
1399 \fB\-\-bisect\-vars\fR
1400 had been used alone\&.
1402 .SS "Commit Ordering"
1404 By default, the commits are shown in reverse chronological order\&.
1406 \-\-date\-order
1407 .RS 4
1408 Show no parents before all of its children are shown, but otherwise show commits in the commit timestamp order\&.
1411 \-\-author\-date\-order
1412 .RS 4
1413 Show no parents before all of its children are shown, but otherwise show commits in the author timestamp order\&.
1416 \-\-topo\-order
1417 .RS 4
1418 Show no parents before all of its children are shown, and avoid showing commits on multiple lines of history intermixed\&.
1420 For example, in a commit history like this:
1422 .if n \{\
1423 .RS 4
1426     \-\-\-1\-\-\-\-2\-\-\-\-4\-\-\-\-7
1427         \e              \e
1428          3\-\-\-\-5\-\-\-\-6\-\-\-\-8\-\-\-
1430 .if n \{\
1434 where the numbers denote the order of commit timestamps,
1435 \fBgit\fR
1436 \fBrev\-list\fR
1437 and friends with
1438 \fB\-\-date\-order\fR
1439 show the commits in the timestamp order: 8 7 6 5 4 3 2 1\&.
1441 With
1442 \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\&.
1445 \-\-reverse
1446 .RS 4
1447 Output the commits chosen to be shown (see Commit Limiting section above) in reverse order\&. Cannot be combined with
1448 \fB\-\-walk\-reflogs\fR\&.
1450 .SS "Object Traversal"
1452 These options are mostly targeted for packing of Git repositories\&.
1454 \-\-objects
1455 .RS 4
1456 Print the object IDs of any object referenced by the listed commits\&.
1457 \fB\-\-objects\fR
1458 \fBfoo\fR
1459 \fB^bar\fR
1460 thus means
1461 \(lqsend me all object IDs which I need to download if I have the commit object \fIbar\fR but not \fIfoo\fR\(rq\&. See also
1462 \fB\-\-object\-names\fR
1463 below\&.
1466 \-\-in\-commit\-order
1467 .RS 4
1468 Print tree and blob ids in order of the commits\&. The tree and blob ids are printed after they are first referenced by a commit\&.
1471 \-\-objects\-edge
1472 .RS 4
1473 Similar to
1474 \fB\-\-objects\fR, but also print the IDs of excluded commits prefixed with a
1475 \(lq\-\(rq
1476 character\&. This is used by
1477 \fBgit-pack-objects\fR(1)
1478 to build a
1479 \(lqthin\(rq
1480 pack, which records objects in deltified form based on objects contained in these excluded commits to reduce network traffic\&.
1483 \-\-objects\-edge\-aggressive
1484 .RS 4
1485 Similar to
1486 \fB\-\-objects\-edge\fR, but it tries harder to find excluded commits at the cost of increased time\&. This is used instead of
1487 \fB\-\-objects\-edge\fR
1488 to build
1489 \(lqthin\(rq
1490 packs for shallow repositories\&.
1493 \-\-indexed\-objects
1494 .RS 4
1495 Pretend as if all trees and blobs used by the index are listed on the command line\&. Note that you probably want to use
1496 \fB\-\-objects\fR, too\&.
1499 \-\-unpacked
1500 .RS 4
1501 Only useful with
1502 \fB\-\-objects\fR; print the object IDs that are not in packs\&.
1505 \-\-object\-names
1506 .RS 4
1507 Only useful with
1508 \fB\-\-objects\fR; print the names of the object IDs that are found\&. This is the default behavior\&. Note that the "name" of each object is ambiguous, and mostly intended as a hint for packing objects\&. In particular: no distinction is made between the names of tags, trees, and blobs; path names may be modified to remove newlines; and if an object would appear multiple times with different names, only one name is shown\&.
1511 \-\-no\-object\-names
1512 .RS 4
1513 Only useful with
1514 \fB\-\-objects\fR; does not print the names of the object IDs that are found\&. This inverts
1515 \fB\-\-object\-names\fR\&. This flag allows the output to be more easily parsed by commands such as
1516 \fBgit-cat-file\fR(1)\&.
1519 \-\-filter=<filter\-spec>
1520 .RS 4
1521 Only useful with one of the
1522 \fB\-\-objects\fR*; omits objects (usually blobs) from the list of printed objects\&. The
1523 \fI<filter\-spec>\fR
1524 may be one of the following:
1526 The form
1527 \fI\-\-filter=blob:none\fR
1528 omits all blobs\&.
1530 The form
1531 \fI\-\-filter=blob:limit=<n>[kmg]\fR
1532 omits blobs of size at least n bytes or units\&. n may be zero\&. The suffixes k, m, and g can be used to name units in KiB, MiB, or GiB\&. For example,
1533 \fIblob:limit=1k\fR
1534 is the same as
1535 \fIblob:limit=1024\fR\&.
1537 The form
1538 \fI\-\-filter=object:type=(tag|commit|tree|blob)\fR
1539 omits all objects which are not of the requested type\&.
1541 The form
1542 \fI\-\-filter=sparse:oid=<blob\-ish>\fR
1543 uses a sparse\-checkout specification contained in the blob (or blob\-expression)
1544 \fI<blob\-ish>\fR
1545 to omit blobs that would not be required for a sparse checkout on the requested refs\&.
1547 The form
1548 \fI\-\-filter=tree:<depth>\fR
1549 omits all blobs and trees whose depth from the root tree is >= <depth> (minimum depth if an object is located at multiple depths in the commits traversed)\&. <depth>=0 will not include any trees or blobs unless included explicitly in the command\-line (or standard input when \-\-stdin is used)\&. <depth>=1 will include only the tree and blobs which are referenced directly by a commit reachable from <commit> or an explicitly\-given object\&. <depth>=2 is like <depth>=1 while also including trees and blobs one more level removed from an explicitly\-given commit or tree\&.
1551 Note that the form
1552 \fI\-\-filter=sparse:path=<path>\fR
1553 that wants to read from an arbitrary path on the filesystem has been dropped for security reasons\&.
1555 Multiple
1556 \fI\-\-filter=\fR
1557 flags can be specified to combine filters\&. Only objects which are accepted by every filter are included\&.
1559 The form
1560 \fI\-\-filter=combine:<filter1>+<filter2>+\&...\:<filterN>\fR
1561 can also be used to combined several filters, but this is harder than just repeating the
1562 \fI\-\-filter\fR
1563 flag and is usually not necessary\&. Filters are joined by
1564 \fI+\fR
1565 and individual filters are %\-encoded (i\&.e\&. URL\-encoded)\&. Besides the
1566 \fI+\fR
1568 \fI%\fR
1569 characters, the following characters are reserved and also must be encoded:
1570 \fB~\fR!@#$^&*()[]{}\e;",<>?\*(Aq` as well as all characters with ASCII code <=
1571 \fB0x20\fR, which includes space and newline\&.
1573 Other arbitrary characters can also be encoded\&. For instance,
1574 \fIcombine:tree:3+blob:none\fR
1576 \fIcombine:tree%3A3+blob%3Anone\fR
1577 are equivalent\&.
1580 \-\-no\-filter
1581 .RS 4
1582 Turn off any previous
1583 \fB\-\-filter=\fR
1584 argument\&.
1587 \-\-filter\-provided\-objects
1588 .RS 4
1589 Filter the list of explicitly provided objects, which would otherwise always be printed even if they did not match any of the filters\&. Only useful with
1590 \fB\-\-filter=\fR\&.
1593 \-\-filter\-print\-omitted
1594 .RS 4
1595 Only useful with
1596 \fB\-\-filter=\fR; prints a list of the objects omitted by the filter\&. Object IDs are prefixed with a
1597 \(lq~\(rq
1598 character\&.
1601 \-\-missing=<missing\-action>
1602 .RS 4
1603 A debug option to help with future "partial clone" development\&. This option specifies how missing objects are handled\&.
1605 The form
1606 \fI\-\-missing=error\fR
1607 requests that rev\-list stop with an error if a missing object is encountered\&. This is the default action\&.
1609 The form
1610 \fI\-\-missing=allow\-any\fR
1611 will allow object traversal to continue if a missing object is encountered\&. Missing objects will silently be omitted from the results\&.
1613 The form
1614 \fI\-\-missing=allow\-promisor\fR
1615 is like
1616 \fIallow\-any\fR, but will only allow object traversal to continue for EXPECTED promisor missing objects\&. Unexpected missing objects will raise an error\&.
1618 The form
1619 \fI\-\-missing=print\fR
1620 is like
1621 \fIallow\-any\fR, but will also print a list of the missing objects\&. Object IDs are prefixed with a
1622 \(lq?\(rq
1623 character\&.
1625 If some tips passed to the traversal are missing, they will be considered as missing too, and the traversal will ignore them\&. In case we cannot get their Object ID though, an error will be raised\&.
1628 \-\-exclude\-promisor\-objects
1629 .RS 4
1630 (For internal use only\&.) Prefilter object traversal at promisor boundary\&. This is used with partial clone\&. This is stronger than
1631 \fB\-\-missing=allow\-promisor\fR
1632 because it limits the traversal, rather than just silencing errors about missing objects\&.
1635 \-\-no\-walk[=(sorted|unsorted)]
1636 .RS 4
1637 Only show the given commits, but do not traverse their ancestors\&. This has no effect if a range is specified\&. If the argument
1638 \fBunsorted\fR
1639 is given, the commits are shown in the order they were given on the command line\&. Otherwise (if
1640 \fBsorted\fR
1641 or no argument was given), the commits are shown in reverse chronological order by commit time\&. Cannot be combined with
1642 \fB\-\-graph\fR\&.
1645 \-\-do\-walk
1646 .RS 4
1647 Overrides a previous
1648 \fB\-\-no\-walk\fR\&.
1650 .SS "Commit Formatting"
1652 Using these options, \fBgit-rev-list\fR(1) will act similar to the more specialized family of commit log tools: \fBgit-log\fR(1), \fBgit-show\fR(1), and \fBgit-whatchanged\fR(1)
1654 \-\-pretty[=<format>], \-\-format=<format>
1655 .RS 4
1656 Pretty\-print the contents of the commit logs in a given format, where
1657 \fI<format>\fR
1658 can be one of
1659 \fIoneline\fR,
1660 \fIshort\fR,
1661 \fImedium\fR,
1662 \fIfull\fR,
1663 \fIfuller\fR,
1664 \fIreference\fR,
1665 \fIemail\fR,
1666 \fIraw\fR,
1667 \fIformat:<string>\fR
1669 \fItformat:<string>\fR\&. When
1670 \fI<format>\fR
1671 is none of the above, and has
1672 \fI%placeholder\fR
1673 in it, it acts as if
1674 \fI\-\-pretty=tformat:<format>\fR
1675 were given\&.
1677 See the "PRETTY FORMATS" section for some additional details for each format\&. When
1678 \fI=<format>\fR
1679 part is omitted, it defaults to
1680 \fImedium\fR\&.
1682 Note: you can specify the default pretty format in the repository configuration (see
1683 \fBgit-config\fR(1))\&.
1686 \-\-abbrev\-commit
1687 .RS 4
1688 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\&.
1690 This should make "\-\-pretty=oneline" a whole lot more readable for people using 80\-column terminals\&.
1693 \-\-no\-abbrev\-commit
1694 .RS 4
1695 Show the full 40\-byte hexadecimal commit object name\&. This negates
1696 \fB\-\-abbrev\-commit\fR, either explicit or implied by other options such as "\-\-oneline"\&. It also overrides the
1697 \fBlog\&.abbrevCommit\fR
1698 variable\&.
1701 \-\-oneline
1702 .RS 4
1703 This is a shorthand for "\-\-pretty=oneline \-\-abbrev\-commit" used together\&.
1706 \-\-encoding=<encoding>
1707 .RS 4
1708 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
1709 \fBX\fR
1710 and we are outputting in
1711 \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\&.
1714 \-\-expand\-tabs=<n>, \-\-expand\-tabs, \-\-no\-expand\-tabs
1715 .RS 4
1716 Perform a tab expansion (replace each tab with enough spaces to fill to the next display column that is a multiple of
1717 \fI<n>\fR) in the log message before showing it in the output\&.
1718 \fB\-\-expand\-tabs\fR
1719 is a short\-hand for
1720 \fB\-\-expand\-tabs=8\fR, and
1721 \fB\-\-no\-expand\-tabs\fR
1722 is a short\-hand for
1723 \fB\-\-expand\-tabs=0\fR, which disables tab expansion\&.
1725 By default, tabs are expanded in pretty formats that indent the log message by 4 spaces (i\&.e\&.
1726 \fImedium\fR, which is the default,
1727 \fIfull\fR, and
1728 \fIfuller\fR)\&.
1731 \-\-show\-signature
1732 .RS 4
1733 Check the validity of a signed commit object by passing the signature to
1734 \fBgpg\fR
1735 \fB\-\-verify\fR
1736 and show the output\&.
1739 \-\-relative\-date
1740 .RS 4
1741 Synonym for
1742 \fB\-\-date=relative\fR\&.
1745 \-\-date=<format>
1746 .RS 4
1747 Only takes effect for dates shown in human\-readable format, such as when using
1748 \fB\-\-pretty\fR\&.
1749 \fBlog\&.date\fR
1750 config variable sets a default value for the log command\(cqs
1751 \fB\-\-date\fR
1752 option\&. By default, dates are shown in the original time zone (either committer\(cqs or author\(cqs)\&. If
1753 \fB\-local\fR
1754 is appended to the format (e\&.g\&.,
1755 \fBiso\-local\fR), the user\(cqs local time zone is used instead\&.
1757 \fB\-\-date=relative\fR
1758 shows dates relative to the current time, e\&.g\&.
1759 \(lq2 hours ago\(rq\&. The
1760 \fB\-local\fR
1761 option has no effect for
1762 \fB\-\-date=relative\fR\&.
1764 \fB\-\-date=local\fR
1765 is an alias for
1766 \fB\-\-date=default\-local\fR\&.
1768 \fB\-\-date=iso\fR
1770 \fB\-\-date=iso8601\fR) shows timestamps in a ISO 8601\-like format\&. The differences to the strict ISO 8601 format are:
1772 .RS 4
1773 .ie n \{\
1774 \h'-04'\(bu\h'+03'\c
1776 .el \{\
1777 .sp -1
1778 .IP \(bu 2.3
1780 a space instead of the
1781 \fBT\fR
1782 date/time delimiter
1785 .RS 4
1786 .ie n \{\
1787 \h'-04'\(bu\h'+03'\c
1789 .el \{\
1790 .sp -1
1791 .IP \(bu 2.3
1793 a space between time and time zone
1796 .RS 4
1797 .ie n \{\
1798 \h'-04'\(bu\h'+03'\c
1800 .el \{\
1801 .sp -1
1802 .IP \(bu 2.3
1804 no colon between hours and minutes of the time zone
1807 \fB\-\-date=iso\-strict\fR
1809 \fB\-\-date=iso8601\-strict\fR) shows timestamps in strict ISO 8601 format\&.
1811 \fB\-\-date=rfc\fR
1813 \fB\-\-date=rfc2822\fR) shows timestamps in RFC 2822 format, often found in email messages\&.
1815 \fB\-\-date=short\fR
1816 shows only the date, but not the time, in
1817 \fBYYYY\-MM\-DD\fR
1818 format\&.
1820 \fB\-\-date=raw\fR
1821 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
1822 \fB+\fR
1824 \fB\-\fR
1825 with four digits; the first two are hours, and the second two are minutes)\&. I\&.e\&., as if the timestamp were formatted with
1826 \fBstrftime\fR("%s %z"))\&. Note that the
1827 \fB\-local\fR
1828 option does not affect the seconds\-since\-epoch value (which is always measured in UTC), but does switch the accompanying timezone value\&.
1830 \fB\-\-date=human\fR
1831 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\&.
1833 \fB\-\-date=unix\fR
1834 shows the date as a Unix epoch timestamp (seconds since 1970)\&. As with
1835 \fB\-\-raw\fR, this is always in UTC and therefore
1836 \fB\-local\fR
1837 has no effect\&.
1839 \fB\-\-date=format:\&.\&.\fR\&. feeds the format \&.\&.\&. to your system
1840 \fBstrftime\fR, except for %s, %z, and %Z, which are handled internally\&. Use
1841 \fB\-\-date=format:\fR%c to show the date in your system locale\(cqs preferred format\&. See the
1842 \fBstrftime\fR
1843 manual for a complete list of format placeholders\&. When using
1844 \fB\-local\fR, the correct syntax is
1845 \fB\-\-date=format\-local:\&.\&.\fR\&.\&.
1847 \fB\-\-date=default\fR
1848 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\&.
1849 \fBThu\fR
1850 \fBJan\fR
1851 \fB1\fR
1852 \fB00:00:00\fR
1853 \fB1970\fR
1854 \fB+0000\fR\&.
1857 \-\-header
1858 .RS 4
1859 Print the contents of the commit in raw\-format; each record is separated with a NUL character\&.
1862 \-\-no\-commit\-header
1863 .RS 4
1864 Suppress the header line containing "commit" and the object ID printed before the specified format\&. This has no effect on the built\-in formats; only custom formats are affected\&.
1867 \-\-commit\-header
1868 .RS 4
1869 Overrides a previous
1870 \fB\-\-no\-commit\-header\fR\&.
1873 \-\-parents
1874 .RS 4
1875 Print also the parents of the commit (in the form "commit parent\&...\:")\&. Also enables parent rewriting, see
1876 \fIHistory Simplification\fR
1877 above\&.
1880 \-\-children
1881 .RS 4
1882 Print also the children of the commit (in the form "commit child\&...\:")\&. Also enables parent rewriting, see
1883 \fIHistory Simplification\fR
1884 above\&.
1887 \-\-timestamp
1888 .RS 4
1889 Print the raw commit timestamp\&.
1892 \-\-left\-right
1893 .RS 4
1894 Mark which side of a symmetric difference a commit is reachable from\&. Commits from the left side are prefixed with < and those from the right with >\&. If combined with
1895 \fB\-\-boundary\fR, those commits are prefixed with
1896 \fB\-\fR\&.
1898 For example, if you have this topology:
1900 .if n \{\
1901 .RS 4
1904              y\-\-\-b\-\-\-b  branch B
1905             / \e /
1906            /   \&.
1907           /   / \e
1908          o\-\-\-x\-\-\-a\-\-\-a  branch A
1910 .if n \{\
1914 you would get an output like this:
1916 .if n \{\
1917 .RS 4
1920         $ git rev\-list \-\-left\-right \-\-boundary \-\-pretty=oneline A\&.\&.\&.B
1922         >bbbbbbb\&.\&.\&. 3rd on b
1923         >bbbbbbb\&.\&.\&. 2nd on b
1924         <aaaaaaa\&.\&.\&. 3rd on a
1925         <aaaaaaa\&.\&.\&. 2nd on a
1926         \-yyyyyyy\&.\&.\&. 1st on b
1927         \-xxxxxxx\&.\&.\&. 1st on a
1929 .if n \{\
1934 \-\-graph
1935 .RS 4
1936 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
1937 \fB\-\-no\-walk\fR\&.
1939 This enables parent rewriting, see
1940 \fIHistory Simplification\fR
1941 above\&.
1943 This implies the
1944 \fB\-\-topo\-order\fR
1945 option by default, but the
1946 \fB\-\-date\-order\fR
1947 option may also be specified\&.
1950 \-\-show\-linear\-break[=<barrier>]
1951 .RS 4
1952 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
1953 \fI<barrier>\fR
1954 is specified, it is the string that will be shown instead of the default one\&.
1957 \-\-count
1958 .RS 4
1959 Print a number stating how many commits would have been listed, and suppress all other output\&. When used together with
1960 \fB\-\-left\-right\fR, instead print the counts for left and right commits, separated by a tab\&. When used together with
1961 \fB\-\-cherry\-mark\fR, omit patch equivalent commits from these counts and print the count for equivalent commits separated by a tab\&.
1963 .SH "PRETTY FORMATS"
1965 If the commit is a merge, and if the pretty\-format is not \fIoneline\fR, \fIemail\fR or \fIraw\fR, an additional line is inserted before the \fIAuthor:\fR line\&. This line begins with "Merge: " and the hashes of ancestral commits are printed, separated by spaces\&. Note that the listed commits may not necessarily be the list of the \fBdirect\fR parent commits if you have limited your view of history: for example, if you are only interested in changes related to a certain directory or file\&.
1967 There are several built\-in formats, and you can define additional formats by setting a pretty\&.<name> config option to either another format name, or a \fIformat:\fR string, as described below (see \fBgit-config\fR(1))\&. Here are the details of the built\-in formats:
1969 .RS 4
1970 .ie n \{\
1971 \h'-04'\(bu\h'+03'\c
1973 .el \{\
1974 .sp -1
1975 .IP \(bu 2.3
1977 \fIoneline\fR
1979 .if n \{\
1980 .RS 4
1983 <hash> <title\-line>
1985 .if n \{\
1989 This is designed to be as compact as possible\&.
1992 .RS 4
1993 .ie n \{\
1994 \h'-04'\(bu\h'+03'\c
1996 .el \{\
1997 .sp -1
1998 .IP \(bu 2.3
2000 \fIshort\fR
2002 .if n \{\
2003 .RS 4
2006 commit <hash>
2007 Author: <author>
2009 .if n \{\
2013 .if n \{\
2014 .RS 4
2017 <title\-line>
2019 .if n \{\
2024 .RS 4
2025 .ie n \{\
2026 \h'-04'\(bu\h'+03'\c
2028 .el \{\
2029 .sp -1
2030 .IP \(bu 2.3
2032 \fImedium\fR
2034 .if n \{\
2035 .RS 4
2038 commit <hash>
2039 Author: <author>
2040 Date:   <author\-date>
2042 .if n \{\
2046 .if n \{\
2047 .RS 4
2050 <title\-line>
2052 .if n \{\
2056 .if n \{\
2057 .RS 4
2060 <full\-commit\-message>
2062 .if n \{\
2067 .RS 4
2068 .ie n \{\
2069 \h'-04'\(bu\h'+03'\c
2071 .el \{\
2072 .sp -1
2073 .IP \(bu 2.3
2075 \fIfull\fR
2077 .if n \{\
2078 .RS 4
2081 commit <hash>
2082 Author: <author>
2083 Commit: <committer>
2085 .if n \{\
2089 .if n \{\
2090 .RS 4
2093 <title\-line>
2095 .if n \{\
2099 .if n \{\
2100 .RS 4
2103 <full\-commit\-message>
2105 .if n \{\
2110 .RS 4
2111 .ie n \{\
2112 \h'-04'\(bu\h'+03'\c
2114 .el \{\
2115 .sp -1
2116 .IP \(bu 2.3
2118 \fIfuller\fR
2120 .if n \{\
2121 .RS 4
2124 commit <hash>
2125 Author:     <author>
2126 AuthorDate: <author\-date>
2127 Commit:     <committer>
2128 CommitDate: <committer\-date>
2130 .if n \{\
2134 .if n \{\
2135 .RS 4
2138 <title\-line>
2140 .if n \{\
2144 .if n \{\
2145 .RS 4
2148 <full\-commit\-message>
2150 .if n \{\
2155 .RS 4
2156 .ie n \{\
2157 \h'-04'\(bu\h'+03'\c
2159 .el \{\
2160 .sp -1
2161 .IP \(bu 2.3
2163 \fIreference\fR
2165 .if n \{\
2166 .RS 4
2169 <abbrev\-hash> (<title\-line>, <short\-author\-date>)
2171 .if n \{\
2175 This format is used to refer to another commit in a commit message and is the same as
2176 \fB\-\-pretty=\fR\*(Aqformat:%C(\fBauto\fR)%h (%s, %ad)\*(Aq\&. By default, the date is formatted with
2177 \fB\-\-date=short\fR
2178 unless another
2179 \fB\-\-date\fR
2180 option is explicitly specified\&. As with any
2181 \fBformat:\fR
2182 with format placeholders, its output is not affected by other options like
2183 \fB\-\-decorate\fR
2185 \fB\-\-walk\-reflogs\fR\&.
2188 .RS 4
2189 .ie n \{\
2190 \h'-04'\(bu\h'+03'\c
2192 .el \{\
2193 .sp -1
2194 .IP \(bu 2.3
2196 \fIemail\fR
2198 .if n \{\
2199 .RS 4
2202 From <hash> <date>
2203 From: <author>
2204 Date: <author\-date>
2205 Subject: [PATCH] <title\-line>
2207 .if n \{\
2211 .if n \{\
2212 .RS 4
2215 <full\-commit\-message>
2217 .if n \{\
2222 .RS 4
2223 .ie n \{\
2224 \h'-04'\(bu\h'+03'\c
2226 .el \{\
2227 .sp -1
2228 .IP \(bu 2.3
2230 \fImboxrd\fR
2232 Like
2233 \fIemail\fR, but lines in the commit message starting with "From " (preceded by zero or more ">") are quoted with ">" so they aren\(cqt confused as starting a new commit\&.
2236 .RS 4
2237 .ie n \{\
2238 \h'-04'\(bu\h'+03'\c
2240 .el \{\
2241 .sp -1
2242 .IP \(bu 2.3
2244 \fIraw\fR
2247 \fIraw\fR
2248 format shows the entire commit exactly as stored in the commit object\&. Notably, the hashes are displayed in full, regardless of whether \-\-abbrev or \-\-no\-abbrev are used, and
2249 \fIparents\fR
2250 information show the true parent commits, without taking grafts or history simplification into account\&. Note that this format affects the way commits are displayed, but not the way the diff is shown e\&.g\&. with
2251 \fBgit\fR
2252 \fBlog\fR
2253 \fB\-\-raw\fR\&. To get full object names in a raw diff format, use
2254 \fB\-\-no\-abbrev\fR\&.
2257 .RS 4
2258 .ie n \{\
2259 \h'-04'\(bu\h'+03'\c
2261 .el \{\
2262 .sp -1
2263 .IP \(bu 2.3
2265 \fIformat:<format\-string>\fR
2268 \fIformat:<format\-string>\fR
2269 format allows you to specify which information you want to show\&. It works a little bit like printf format, with the notable exception that you get a newline with
2270 \fI%n\fR
2271 instead of
2272 \fI\en\fR\&.
2274 E\&.g,
2275 \fIformat:"The author of %h was %an, %ar%nThe title was >>%s<<%n"\fR
2276 would show something like this:
2278 .if n \{\
2279 .RS 4
2282 The author of fe6e0ee was Junio C Hamano, 23 hours ago
2283 The title was >>t4119: test autocomputing \-p<n> for traditional diff input\&.<<
2285 .if n \{\
2289 The placeholders are:
2291 .RS 4
2292 .ie n \{\
2293 \h'-04'\(bu\h'+03'\c
2295 .el \{\
2296 .sp -1
2297 .IP \(bu 2.3
2299 Placeholders that expand to a single literal character:
2301 \fI%n\fR
2302 .RS 4
2303 newline
2306 \fI%%\fR
2307 .RS 4
2308 a raw
2309 \fI%\fR
2312 \fI%x00\fR
2313 .RS 4
2314 \fI%x\fR
2315 followed by two hexadecimal digits is replaced with a byte with the hexadecimal digits\*(Aq value (we will call this "literal formatting code" in the rest of this document)\&.
2319 .RS 4
2320 .ie n \{\
2321 \h'-04'\(bu\h'+03'\c
2323 .el \{\
2324 .sp -1
2325 .IP \(bu 2.3
2327 Placeholders that affect formatting of later placeholders:
2329 \fI%Cred\fR
2330 .RS 4
2331 switch color to red
2334 \fI%Cgreen\fR
2335 .RS 4
2336 switch color to green
2339 \fI%Cblue\fR
2340 .RS 4
2341 switch color to blue
2344 \fI%Creset\fR
2345 .RS 4
2346 reset color
2349 \fI%C(\&...\:)\fR
2350 .RS 4
2351 color specification, as described under Values in the "CONFIGURATION FILE" section of
2352 \fBgit-config\fR(1)\&. By default, colors are shown only when enabled for log output (by
2353 \fBcolor\&.diff\fR,
2354 \fBcolor\&.ui\fR, or
2355 \fB\-\-color\fR, and respecting the
2356 \fBauto\fR
2357 settings of the former if we are going to a terminal)\&. %C(\fBauto,\fR\fB\&.\&.\&.\fR) is accepted as a historical synonym for the default (e\&.g\&., %C(\fBauto,red\fR))\&. Specifying %C(\fBalways,\fR\fB\&.\&.\&.\fR) will show the colors even when color is not otherwise enabled (though consider just using
2358 \fB\-\-color=always\fR
2359 to enable color for the whole output, including this format and anything else git might color)\&.
2360 \fBauto\fR
2361 alone (i\&.e\&. %C(\fBauto\fR)) will turn on auto coloring on the next placeholders until the color is switched again\&.
2364 \fI%m\fR
2365 .RS 4
2366 left (<), right (>) or boundary (\fB\-\fR) mark
2369 \fI%w([<w>[,<i1>[,<i2>]]])\fR
2370 .RS 4
2371 switch line wrapping, like the \-w option of
2372 \fBgit-shortlog\fR(1)\&.
2375 \fI%<( <N> [,trunc|ltrunc|mtrunc])\fR
2376 .RS 4
2377 make the next placeholder take at least N column widths, padding spaces on the right if necessary\&. Optionally truncate (with ellipsis
2378 \fI\&.\&.\fR) at the left (ltrunc)
2379 \fB\&.\&.\fR\fBft\fR, the middle (mtrunc)
2380 \fBmi\fR\fB\&.\&.\fR\fBle\fR, or the end (trunc)
2381 \fBrig\&.\&.\fR, if the output is longer than N columns\&. Note 1: that truncating only works correctly with N >= 2\&. Note 2: spaces around the N and M (see below) values are optional\&. Note 3: Emojis and other wide characters will take two display columns, which may over\-run column boundaries\&. Note 4: decomposed character combining marks may be misplaced at padding boundaries\&.
2384 \fI%<|( <M> )\fR
2385 .RS 4
2386 make the next placeholder take at least until Mth display column, padding spaces on the right if necessary\&. Use negative M values for column positions measured from the right hand edge of the terminal window\&.
2389 \fI%>( <N> )\fR, \fI%>|( <M> )\fR
2390 .RS 4
2391 similar to
2392 \fI%<( <N> )\fR,
2393 \fI%<|( <M> )\fR
2394 respectively, but padding spaces on the left
2397 \fI%>>( <N> )\fR, \fI%>>|( <M> )\fR
2398 .RS 4
2399 similar to
2400 \fI%>( <N> )\fR,
2401 \fI%>|( <M> )\fR
2402 respectively, except that if the next placeholder takes more spaces than given and there are spaces on its left, use those spaces
2405 \fI%><( <N> )\fR, \fI%><|( <M> )\fR
2406 .RS 4
2407 similar to
2408 \fI%<( <N> )\fR,
2409 \fI%<|( <M> )\fR
2410 respectively, but padding both sides (i\&.e\&. the text is centered)
2414 .RS 4
2415 .ie n \{\
2416 \h'-04'\(bu\h'+03'\c
2418 .el \{\
2419 .sp -1
2420 .IP \(bu 2.3
2422 Placeholders that expand to information extracted from the commit:
2424 \fI%H\fR
2425 .RS 4
2426 commit hash
2429 \fI%h\fR
2430 .RS 4
2431 abbreviated commit hash
2434 \fI%T\fR
2435 .RS 4
2436 tree hash
2439 \fI%t\fR
2440 .RS 4
2441 abbreviated tree hash
2444 \fI%P\fR
2445 .RS 4
2446 parent hashes
2449 \fI%p\fR
2450 .RS 4
2451 abbreviated parent hashes
2454 \fI%an\fR
2455 .RS 4
2456 author name
2459 \fI%aN\fR
2460 .RS 4
2461 author name (respecting \&.mailmap, see
2462 \fBgit-shortlog\fR(1)
2464 \fBgit-blame\fR(1))
2467 \fI%ae\fR
2468 .RS 4
2469 author email
2472 \fI%aE\fR
2473 .RS 4
2474 author email (respecting \&.mailmap, see
2475 \fBgit-shortlog\fR(1)
2477 \fBgit-blame\fR(1))
2480 \fI%al\fR
2481 .RS 4
2482 author email local\-part (the part before the
2483 \fI@\fR
2484 sign)
2487 \fI%aL\fR
2488 .RS 4
2489 author local\-part (see
2490 \fI%al\fR) respecting \&.mailmap, see
2491 \fBgit-shortlog\fR(1)
2493 \fBgit-blame\fR(1))
2496 \fI%ad\fR
2497 .RS 4
2498 author date (format respects \-\-date= option)
2501 \fI%aD\fR
2502 .RS 4
2503 author date, RFC2822 style
2506 \fI%ar\fR
2507 .RS 4
2508 author date, relative
2511 \fI%at\fR
2512 .RS 4
2513 author date, UNIX timestamp
2516 \fI%ai\fR
2517 .RS 4
2518 author date, ISO 8601\-like format
2521 \fI%aI\fR
2522 .RS 4
2523 author date, strict ISO 8601 format
2526 \fI%as\fR
2527 .RS 4
2528 author date, short format (\fBYYYY\-MM\-DD\fR)
2531 \fI%ah\fR
2532 .RS 4
2533 author date, human style (like the
2534 \fB\-\-date=human\fR
2535 option of
2536 \fBgit-rev-list\fR(1))
2539 \fI%cn\fR
2540 .RS 4
2541 committer name
2544 \fI%cN\fR
2545 .RS 4
2546 committer name (respecting \&.mailmap, see
2547 \fBgit-shortlog\fR(1)
2549 \fBgit-blame\fR(1))
2552 \fI%ce\fR
2553 .RS 4
2554 committer email
2557 \fI%cE\fR
2558 .RS 4
2559 committer email (respecting \&.mailmap, see
2560 \fBgit-shortlog\fR(1)
2562 \fBgit-blame\fR(1))
2565 \fI%cl\fR
2566 .RS 4
2567 committer email local\-part (the part before the
2568 \fI@\fR
2569 sign)
2572 \fI%cL\fR
2573 .RS 4
2574 committer local\-part (see
2575 \fI%cl\fR) respecting \&.mailmap, see
2576 \fBgit-shortlog\fR(1)
2578 \fBgit-blame\fR(1))
2581 \fI%cd\fR
2582 .RS 4
2583 committer date (format respects \-\-date= option)
2586 \fI%cD\fR
2587 .RS 4
2588 committer date, RFC2822 style
2591 \fI%cr\fR
2592 .RS 4
2593 committer date, relative
2596 \fI%ct\fR
2597 .RS 4
2598 committer date, UNIX timestamp
2601 \fI%ci\fR
2602 .RS 4
2603 committer date, ISO 8601\-like format
2606 \fI%cI\fR
2607 .RS 4
2608 committer date, strict ISO 8601 format
2611 \fI%cs\fR
2612 .RS 4
2613 committer date, short format (\fBYYYY\-MM\-DD\fR)
2616 \fI%ch\fR
2617 .RS 4
2618 committer date, human style (like the
2619 \fB\-\-date=human\fR
2620 option of
2621 \fBgit-rev-list\fR(1))
2624 \fI%d\fR
2625 .RS 4
2626 ref names, like the \-\-decorate option of
2627 \fBgit-log\fR(1)
2630 \fI%D\fR
2631 .RS 4
2632 ref names without the " (", ")" wrapping\&.
2635 \fI%(decorate[:<options>])\fR
2636 .RS 4
2637 ref names with custom decorations\&. The
2638 \fBdecorate\fR
2639 string may be followed by a colon and zero or more comma\-separated options\&. Option values may contain literal formatting codes\&. These must be used for commas (%x2C) and closing parentheses (%x29), due to their role in the option syntax\&.
2641 .RS 4
2642 .ie n \{\
2643 \h'-04'\(bu\h'+03'\c
2645 .el \{\
2646 .sp -1
2647 .IP \(bu 2.3
2649 \fIprefix=<value>\fR: Shown before the list of ref names\&. Defaults to "\ \&("\&.
2652 .RS 4
2653 .ie n \{\
2654 \h'-04'\(bu\h'+03'\c
2656 .el \{\
2657 .sp -1
2658 .IP \(bu 2.3
2660 \fIsuffix=<value>\fR: Shown after the list of ref names\&. Defaults to ")"\&.
2663 .RS 4
2664 .ie n \{\
2665 \h'-04'\(bu\h'+03'\c
2667 .el \{\
2668 .sp -1
2669 .IP \(bu 2.3
2671 \fIseparator=<value>\fR: Shown between ref names\&. Defaults to "\fB,\fR\ \&"\&.
2674 .RS 4
2675 .ie n \{\
2676 \h'-04'\(bu\h'+03'\c
2678 .el \{\
2679 .sp -1
2680 .IP \(bu 2.3
2682 \fIpointer=<value>\fR: Shown between HEAD and the branch it points to, if any\&. Defaults to "\ \&\fB\-\fR>\ \&"\&.
2685 .RS 4
2686 .ie n \{\
2687 \h'-04'\(bu\h'+03'\c
2689 .el \{\
2690 .sp -1
2691 .IP \(bu 2.3
2693 \fItag=<value>\fR: Shown before tag names\&. Defaults to "\fBtag:\fR\ \&"\&.
2698 For example, to produce decorations with no wrapping or tag annotations, and spaces as separators:
2700 + %(\fBdecorate:prefix=,suffix=,tag=,separator=\fR
2703 \fI%(describe[:<options>])\fR
2704 .RS 4
2705 human\-readable name, like
2706 \fBgit-describe\fR(1); empty string for undescribable commits\&. The
2707 \fBdescribe\fR
2708 string may be followed by a colon and zero or more comma\-separated options\&. Descriptions can be inconsistent when tags are added or removed at the same time\&.
2710 .RS 4
2711 .ie n \{\
2712 \h'-04'\(bu\h'+03'\c
2714 .el \{\
2715 .sp -1
2716 .IP \(bu 2.3
2718 \fItags[=<bool\-value>]\fR: Instead of only considering annotated tags, consider lightweight tags as well\&.
2721 .RS 4
2722 .ie n \{\
2723 \h'-04'\(bu\h'+03'\c
2725 .el \{\
2726 .sp -1
2727 .IP \(bu 2.3
2729 \fIabbrev=<number>\fR: Instead of using the default number of hexadecimal digits (which will vary according to the number of objects in the repository with a default of 7) of the abbreviated object name, use <number> digits, or as many digits as needed to form a unique object name\&.
2732 .RS 4
2733 .ie n \{\
2734 \h'-04'\(bu\h'+03'\c
2736 .el \{\
2737 .sp -1
2738 .IP \(bu 2.3
2740 \fImatch=<pattern>\fR: Only consider tags matching the given
2741 \fBglob\fR(\fB7\fR) pattern, excluding the "refs/tags/" prefix\&.
2744 .RS 4
2745 .ie n \{\
2746 \h'-04'\(bu\h'+03'\c
2748 .el \{\
2749 .sp -1
2750 .IP \(bu 2.3
2752 \fIexclude=<pattern>\fR: Do not consider tags matching the given
2753 \fBglob\fR(\fB7\fR) pattern, excluding the "refs/tags/" prefix\&.
2757 \fI%S\fR
2758 .RS 4
2759 ref name given on the command line by which the commit was reached (like
2760 \fBgit\fR
2761 \fBlog\fR
2762 \fB\-\-source\fR), only works with
2763 \fBgit\fR
2764 \fBlog\fR
2767 \fI%e\fR
2768 .RS 4
2769 encoding
2772 \fI%s\fR
2773 .RS 4
2774 subject
2777 \fI%f\fR
2778 .RS 4
2779 sanitized subject line, suitable for a filename
2782 \fI%b\fR
2783 .RS 4
2784 body
2787 \fI%B\fR
2788 .RS 4
2789 raw body (unwrapped subject and body)
2792 \fI%GG\fR
2793 .RS 4
2794 raw verification message from GPG for a signed commit
2797 \fI%G?\fR
2798 .RS 4
2799 show "G" for a good (valid) signature, "B" for a bad signature, "U" for a good signature with unknown validity, "X" for a good signature that has expired, "Y" for a good signature made by an expired key, "R" for a good signature made by a revoked key, "E" if the signature cannot be checked (e\&.g\&. missing key) and "N" for no signature
2802 \fI%GS\fR
2803 .RS 4
2804 show the name of the signer for a signed commit
2807 \fI%GK\fR
2808 .RS 4
2809 show the key used to sign a signed commit
2812 \fI%GF\fR
2813 .RS 4
2814 show the fingerprint of the key used to sign a signed commit
2817 \fI%GP\fR
2818 .RS 4
2819 show the fingerprint of the primary key whose subkey was used to sign a signed commit
2822 \fI%GT\fR
2823 .RS 4
2824 show the trust level for the key used to sign a signed commit
2827 \fI%gD\fR
2828 .RS 4
2829 reflog selector, e\&.g\&.,
2830 \fBrefs/stash@\fR{1} or
2831 \fBrefs/stash@\fR{2
2832 \fBminutes\fR
2833 \fBago\fR}; the format follows the rules described for the
2834 \fB\-g\fR
2835 option\&. The portion before the
2836 \fB@\fR
2837 is the refname as given on the command line (so
2838 \fBgit\fR
2839 \fBlog\fR
2840 \fB\-g\fR
2841 \fBrefs/heads/master\fR
2842 would yield
2843 \fBrefs/heads/master@\fR{0})\&.
2846 \fI%gd\fR
2847 .RS 4
2848 shortened reflog selector; same as %gD, but the refname portion is shortened for human readability (so
2849 \fBrefs/heads/master\fR
2850 becomes just
2851 \fBmaster\fR)\&.
2854 \fI%gn\fR
2855 .RS 4
2856 reflog identity name
2859 \fI%gN\fR
2860 .RS 4
2861 reflog identity name (respecting \&.mailmap, see
2862 \fBgit-shortlog\fR(1)
2864 \fBgit-blame\fR(1))
2867 \fI%ge\fR
2868 .RS 4
2869 reflog identity email
2872 \fI%gE\fR
2873 .RS 4
2874 reflog identity email (respecting \&.mailmap, see
2875 \fBgit-shortlog\fR(1)
2877 \fBgit-blame\fR(1))
2880 \fI%gs\fR
2881 .RS 4
2882 reflog subject
2885 \fI%(trailers[:<options>])\fR
2886 .RS 4
2887 display the trailers of the body as interpreted by
2888 \fBgit-interpret-trailers\fR(1)\&. The
2889 \fBtrailers\fR
2890 string may be followed by a colon and zero or more comma\-separated options\&. If any option is provided multiple times, the last occurrence wins\&.
2892 .RS 4
2893 .ie n \{\
2894 \h'-04'\(bu\h'+03'\c
2896 .el \{\
2897 .sp -1
2898 .IP \(bu 2.3
2900 \fIkey=<key>\fR: only show trailers with specified <key>\&. Matching is done case\-insensitively and trailing colon is optional\&. If option is given multiple times trailer lines matching any of the keys are shown\&. This option automatically enables the
2901 \fBonly\fR
2902 option so that non\-trailer lines in the trailer block are hidden\&. If that is not desired it can be disabled with
2903 \fBonly=false\fR\&. E\&.g\&., %(\fBtrailers:key=Reviewed\-by\fR) shows trailer lines with key
2904 \fBReviewed\-by\fR\&.
2907 .RS 4
2908 .ie n \{\
2909 \h'-04'\(bu\h'+03'\c
2911 .el \{\
2912 .sp -1
2913 .IP \(bu 2.3
2915 \fIonly[=<bool>]\fR: select whether non\-trailer lines from the trailer block should be included\&.
2918 .RS 4
2919 .ie n \{\
2920 \h'-04'\(bu\h'+03'\c
2922 .el \{\
2923 .sp -1
2924 .IP \(bu 2.3
2926 \fIseparator=<sep>\fR: specify the separator inserted between trailer lines\&. Defaults to a line feed character\&. The string <sep> may contain the literal formatting codes described above\&. To use comma as separator one must use %x2C as it would otherwise be parsed as next option\&. E\&.g\&., %(\fBtrailers:key=Ticket,separator=\fR%x2C ) shows all trailer lines whose key is "Ticket" separated by a comma and a space\&.
2929 .RS 4
2930 .ie n \{\
2931 \h'-04'\(bu\h'+03'\c
2933 .el \{\
2934 .sp -1
2935 .IP \(bu 2.3
2937 \fIunfold[=<bool>]\fR: make it behave as if interpret\-trailer\(cqs
2938 \fB\-\-unfold\fR
2939 option was given\&. E\&.g\&., %(\fBtrailers:only,unfold=true\fR) unfolds and shows all trailer lines\&.
2942 .RS 4
2943 .ie n \{\
2944 \h'-04'\(bu\h'+03'\c
2946 .el \{\
2947 .sp -1
2948 .IP \(bu 2.3
2950 \fIkeyonly[=<bool>]\fR: only show the key part of the trailer\&.
2953 .RS 4
2954 .ie n \{\
2955 \h'-04'\(bu\h'+03'\c
2957 .el \{\
2958 .sp -1
2959 .IP \(bu 2.3
2961 \fIvalueonly[=<bool>]\fR: only show the value part of the trailer\&.
2964 .RS 4
2965 .ie n \{\
2966 \h'-04'\(bu\h'+03'\c
2968 .el \{\
2969 .sp -1
2970 .IP \(bu 2.3
2972 \fIkey_value_separator=<sep>\fR: specify the separator inserted between the key and value of each trailer\&. Defaults to ": "\&. Otherwise it shares the same semantics as
2973 \fIseparator=<sep>\fR
2974 above\&.
2978 .if n \{\
2981 .RS 4
2982 .it 1 an-trap
2983 .nr an-no-space-flag 1
2984 .nr an-break-flag 1
2986 .ps +1
2987 \fBNote\fR
2988 .ps -1
2991 Some placeholders may depend on other options given to the revision traversal engine\&. For example, the %g* reflog options will insert an empty string unless we are traversing reflog entries (e\&.g\&., by \fBgit\fR \fBlog\fR \fB\-g\fR)\&. The %d and %D placeholders will use the "short" decoration format if \fB\-\-decorate\fR was not already provided on the command line\&.
2992 .sp .5v
2995 The boolean options accept an optional value [\fB=\fR\fI<bool\-value>\fR]\&. The values \fBtrue\fR, \fBfalse\fR, \fBon\fR, \fBoff\fR etc\&. are all accepted\&. See the "boolean" sub\-section in "EXAMPLES" in \fBgit-config\fR(1)\&. If a boolean option is given with no value, it\(cqs enabled\&.
2997 If you add a \fB+\fR (plus sign) after \fI%\fR of a placeholder, a line\-feed is inserted immediately before the expansion if and only if the placeholder expands to a non\-empty string\&.
2999 If you add a \fB\-\fR (minus sign) after \fI%\fR of a placeholder, all consecutive line\-feeds immediately preceding the expansion are deleted if and only if the placeholder expands to an empty string\&.
3001 If you add a ` ` (space) after \fI%\fR of a placeholder, a space is inserted immediately before the expansion if and only if the placeholder expands to a non\-empty string\&.
3003 .RS 4
3004 .ie n \{\
3005 \h'-04'\(bu\h'+03'\c
3007 .el \{\
3008 .sp -1
3009 .IP \(bu 2.3
3011 \fItformat:\fR
3014 \fItformat:\fR
3015 format works exactly like
3016 \fIformat:\fR, except that it provides "terminator" semantics instead of "separator" semantics\&. In other words, each commit has the message terminator character (usually a newline) appended, rather than a separator placed between entries\&. This means that the final entry of a single\-line format will be properly terminated with a new line, just as the "oneline" format does\&. For example:
3018 .if n \{\
3019 .RS 4
3022 $ git log \-2 \-\-pretty=format:%h 4da45bef \e
3023   | perl \-pe \*(Aq$_ \&.= " \-\- NO NEWLINE\en" unless /\en/\*(Aq
3024 4da45be
3025 7134973 \-\- NO NEWLINE
3027 $ git log \-2 \-\-pretty=tformat:%h 4da45bef \e
3028   | perl \-pe \*(Aq$_ \&.= " \-\- NO NEWLINE\en" unless /\en/\*(Aq
3029 4da45be
3030 7134973
3032 .if n \{\
3036 In addition, any unrecognized string that has a % in it is interpreted as if it has
3037 \fBtformat:\fR
3038 in front of it\&. For example, these two are equivalent:
3040 .if n \{\
3041 .RS 4
3044 $ git log \-2 \-\-pretty=tformat:%h 4da45bef
3045 $ git log \-2 \-\-pretty=%h 4da45bef
3047 .if n \{\
3051 .SH "EXAMPLES"
3053 .RS 4
3054 .ie n \{\
3055 \h'-04'\(bu\h'+03'\c
3057 .el \{\
3058 .sp -1
3059 .IP \(bu 2.3
3061 Print the list of commits reachable from the current branch\&.
3063 .if n \{\
3064 .RS 4
3067 git rev\-list HEAD
3069 .if n \{\
3074 .RS 4
3075 .ie n \{\
3076 \h'-04'\(bu\h'+03'\c
3078 .el \{\
3079 .sp -1
3080 .IP \(bu 2.3
3082 Print the list of commits on this branch, but not present in the upstream branch\&.
3084 .if n \{\
3085 .RS 4
3088 git rev\-list @{upstream}\&.\&.HEAD
3090 .if n \{\
3095 .RS 4
3096 .ie n \{\
3097 \h'-04'\(bu\h'+03'\c
3099 .el \{\
3100 .sp -1
3101 .IP \(bu 2.3
3103 Format commits with their author and commit message (see also the porcelain
3104 \fBgit-log\fR(1))\&.
3106 .if n \{\
3107 .RS 4
3110 git rev\-list \-\-format=medium HEAD
3112 .if n \{\
3117 .RS 4
3118 .ie n \{\
3119 \h'-04'\(bu\h'+03'\c
3121 .el \{\
3122 .sp -1
3123 .IP \(bu 2.3
3125 Format commits along with their diffs (see also the porcelain
3126 \fBgit-log\fR(1), which can do this in a single process)\&.
3128 .if n \{\
3129 .RS 4
3132 git rev\-list HEAD |
3133 git diff\-tree \-\-stdin \-\-format=medium \-p
3135 .if n \{\
3140 .RS 4
3141 .ie n \{\
3142 \h'-04'\(bu\h'+03'\c
3144 .el \{\
3145 .sp -1
3146 .IP \(bu 2.3
3148 Print the list of commits on the current branch that touched any file in the
3149 \fBDocumentation\fR
3150 directory\&.
3152 .if n \{\
3153 .RS 4
3156 git rev\-list HEAD \-\- Documentation/
3158 .if n \{\
3163 .RS 4
3164 .ie n \{\
3165 \h'-04'\(bu\h'+03'\c
3167 .el \{\
3168 .sp -1
3169 .IP \(bu 2.3
3171 Print the list of commits authored by you in the past year, on any branch, tag, or other ref\&.
3173 .if n \{\
3174 .RS 4
3177 git rev\-list \-\-author=you@example\&.com \-\-since=1\&.year\&.ago \-\-all
3179 .if n \{\
3184 .RS 4
3185 .ie n \{\
3186 \h'-04'\(bu\h'+03'\c
3188 .el \{\
3189 .sp -1
3190 .IP \(bu 2.3
3192 Print the list of objects reachable from the current branch (i\&.e\&., all commits and the blobs and trees they contain)\&.
3194 .if n \{\
3195 .RS 4
3198 git rev\-list \-\-objects HEAD
3200 .if n \{\
3205 .RS 4
3206 .ie n \{\
3207 \h'-04'\(bu\h'+03'\c
3209 .el \{\
3210 .sp -1
3211 .IP \(bu 2.3
3213 Compare the disk size of all reachable objects, versus those reachable from reflogs, versus the total packed size\&. This can tell you whether running
3214 \fBgit\fR
3215 \fBrepack\fR
3216 \fB\-ad\fR
3217 might reduce the repository size (by dropping unreachable objects), and whether expiring reflogs might help\&.
3219 .if n \{\
3220 .RS 4
3223 # reachable objects
3224 git rev\-list \-\-disk\-usage \-\-objects \-\-all
3225 # plus reflogs
3226 git rev\-list \-\-disk\-usage \-\-objects \-\-all \-\-reflog
3227 # total disk size used
3228 du \-c \&.git/objects/pack/*\&.pack \&.git/objects/??/*
3229 # alternative to du: add up "size" and "size\-pack" fields
3230 git count\-objects \-v
3232 .if n \{\
3237 .RS 4
3238 .ie n \{\
3239 \h'-04'\(bu\h'+03'\c
3241 .el \{\
3242 .sp -1
3243 .IP \(bu 2.3
3245 Report the disk size of each branch, not including objects used by the current branch\&. This can find outliers that are contributing to a bloated repository size (e\&.g\&., because somebody accidentally committed large build artifacts)\&.
3247 .if n \{\
3248 .RS 4
3251 git for\-each\-ref \-\-format=\*(Aq%(refname)\*(Aq |
3252 while read branch
3254         size=$(git rev\-list \-\-disk\-usage \-\-objects HEAD\&.\&.$branch)
3255         echo "$size $branch"
3256 done |
3257 sort \-n
3259 .if n \{\
3264 .RS 4
3265 .ie n \{\
3266 \h'-04'\(bu\h'+03'\c
3268 .el \{\
3269 .sp -1
3270 .IP \(bu 2.3
3272 Compare the on\-disk size of branches in one group of refs, excluding another\&. If you co\-mingle objects from multiple remotes in a single repository, this can show which remotes are contributing to the repository size (taking the size of
3273 \fBorigin\fR
3274 as a baseline)\&.
3276 .if n \{\
3277 .RS 4
3280 git rev\-list \-\-disk\-usage \-\-objects \-\-remotes=$suspect \-\-not \-\-remotes=origin
3282 .if n \{\
3286 .SH "GIT"
3288 Part of the \fBgit\fR(1) suite