Autogenerated manpages for v2.46.0-551-gc5ee8
[git-manpages.git] / man1 / git-rev-list.1
blob10c712e340c5fe605675d94d08f1b0318bfa593b
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-09-10
6 .\"    Manual: Git Manual
7 .\"    Source: Git 2.46.0.551.gc5ee8f2d1c
8 .\"  Language: English
9 .\"
10 .TH "GIT\-REV\-LIST" "1" "2024-09-10" "Git 2\&.46\&.0\&.551\&.gc5ee8f" "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=<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\&.
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=<pattern>\fR, commits whose author matches any of the given patterns are chosen (similarly for multiple
129 \fB\-\-committer=<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=<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=<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 \fB<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 cat\-file \-\-batch\-check=\*(Aq%(objectsize:disk)\*(Aq\fR, except that it runs much faster (especially with
422 \fB\-\-use\-bitmap\-index\fR)\&. See the
423 \fBCAVEATS\fR
424 section in
425 \fBgit-cat-file\fR(1)
426 for the limitations of what "on\-disk storage" means\&. With the optional value
427 \fBhuman\fR, on\-disk storage size is shown in human\-readable string(e\&.g\&. 12\&.24 Kib, 3\&.50 Mib)\&.
430 \-\-cherry\-mark
431 .RS 4
432 Like
433 \fB\-\-cherry\-pick\fR
434 (see below) but mark equivalent commits with
435 \fB=\fR
436 rather than omitting them, and inequivalent ones with
437 \fB+\fR\&.
440 \-\-cherry\-pick
441 .RS 4
442 Omit any commit that introduces the same change as another commit on the
443 \(lqother side\(rq
444 when the set of commits are limited with symmetric difference\&.
446 For example, if you have two branches,
447 \fBA\fR
449 \fBB\fR, a usual way to list all commits on only one side of them is with
450 \fB\-\-left\-right\fR
451 (see the example below in the description of the
452 \fB\-\-left\-right\fR
453 option)\&. However, it shows the commits that were cherry\-picked from the other branch (for example,
454 \(lq3rd on b\(rq
455 may be cherry\-picked from branch A)\&. With this option, such pairs of commits are excluded from the output\&.
458 \-\-left\-only, \-\-right\-only
459 .RS 4
460 List only commits on the respective side of a symmetric difference, i\&.e\&. only those which would be marked
461 \fB<\fR
462 resp\&.
463 \fB>\fR
465 \fB\-\-left\-right\fR\&.
467 For example,
468 \fB\-\-cherry\-pick \-\-right\-only A\&.\&.\&.B\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 cherry A B\fR\&. More precisely,
478 \fB\-\-cherry\-pick \-\-right\-only \-\-no\-merges\fR
479 gives the exact list\&.
482 \-\-cherry
483 .RS 4
484 A synonym for
485 \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
486 \fBgit log \-\-cherry upstream\&.\&.\&.mybranch\fR, similar to
487 \fBgit cherry upstream mybranch\fR\&.
490 \-g, \-\-walk\-reflogs
491 .RS 4
492 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,
493 \fI^commit\fR,
494 \fIcommit1\&.\&.commit2\fR, and
495 \fIcommit1\&.\&.\&.commit2\fR
496 notations cannot be used)\&.
498 With
499 \fB\-\-pretty\fR
500 format other than
501 \fBoneline\fR
503 \fBreference\fR
504 (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
505 \fBref@{<Nth>}\fR
506 (where
507 \fI<Nth>\fR
508 is the reverse\-chronological index in the reflog) or as
509 \fBref@{<timestamp>}\fR
510 (with the
511 \fI<timestamp>\fR
512 for that entry), depending on a few rules:
514 .RS 4
515 .ie n \{\
516 \h'-04' 1.\h'+01'\c
518 .el \{\
519 .sp -1
520 .IP "  1." 4.2
522 If the starting point is specified as
523 \fBref@{<Nth>}\fR, show the index format\&.
526 .RS 4
527 .ie n \{\
528 \h'-04' 2.\h'+01'\c
530 .el \{\
531 .sp -1
532 .IP "  2." 4.2
534 If the starting point was specified as
535 \fBref@{now}\fR, show the timestamp format\&.
538 .RS 4
539 .ie n \{\
540 \h'-04' 3.\h'+01'\c
542 .el \{\
543 .sp -1
544 .IP "  3." 4.2
546 If neither was used, but
547 \fB\-\-date\fR
548 was given on the command line, show the timestamp in the format requested by
549 \fB\-\-date\fR\&.
552 .RS 4
553 .ie n \{\
554 \h'-04' 4.\h'+01'\c
556 .el \{\
557 .sp -1
558 .IP "  4." 4.2
560 Otherwise, show the index format\&.
563 Under
564 \fB\-\-pretty=oneline\fR, the commit message is prefixed with this information on the same line\&. This option cannot be combined with
565 \fB\-\-reverse\fR\&. See also
566 \fBgit-reflog\fR(1)\&.
568 Under
569 \fB\-\-pretty=reference\fR, this information will not be shown at all\&.
572 \-\-merge
573 .RS 4
574 Show commits touching conflicted paths in the range
575 \fBHEAD\&.\&.\&.<other>\fR, where
576 \fB<other>\fR
577 is the first existing pseudoref in
578 \fBMERGE_HEAD\fR,
579 \fBCHERRY_PICK_HEAD\fR,
580 \fBREVERT_HEAD\fR
582 \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\&.
585 \-\-boundary
586 .RS 4
587 Output excluded boundary commits\&. Boundary commits are prefixed with
588 \fB\-\fR\&.
591 \-\-use\-bitmap\-index
592 .RS 4
593 Try to speed up the traversal using the pack bitmap index (if one is available)\&. Note that when traversing with
594 \fB\-\-objects\fR, trees and blobs will not have their associated path printed\&.
597 \-\-progress=<header>
598 .RS 4
599 Show progress reports on stderr as objects are considered\&. The
600 \fB<header>\fR
601 text will be printed with each progress update\&.
603 .SS "History Simplification"
605 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\&.
607 The following options select the commits to be shown:
609 <paths>
610 .RS 4
611 Commits modifying the given <paths> are selected\&.
614 \-\-simplify\-by\-decoration
615 .RS 4
616 Commits that are referred by some branch or tag are selected\&.
619 Note that extra commits can be shown to give a meaningful history\&.
621 The following options affect the way the simplification is performed:
623 Default mode
624 .RS 4
625 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)
628 \-\-show\-pulls
629 .RS 4
630 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\&.
633 \-\-full\-history
634 .RS 4
635 Same as the default mode, but does not prune some history\&.
638 \-\-dense
639 .RS 4
640 Only the selected commits are shown, plus some to have a meaningful history\&.
643 \-\-sparse
644 .RS 4
645 All commits in the simplified history are shown\&.
648 \-\-simplify\-merges
649 .RS 4
650 Additional option to
651 \fB\-\-full\-history\fR
652 to remove some needless merges from the resulting history, as there are no selected commits contributing to this merge\&.
655 \-\-ancestry\-path[=<commit>]
656 .RS 4
657 When given a range of commits to display (e\&.g\&.
658 \fIcommit1\&.\&.commit2\fR
660 \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
661 \fIcommit1\fR
662 (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\&.
665 A more detailed explanation follows\&.
667 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\&.)
669 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:
671 .if n \{\
672 .RS 4
675           \&.\-A\-\-\-M\-\-\-N\-\-\-O\-\-\-P\-\-\-Q
676          /     /   /   /   /   /
677         I     B   C   D   E   Y
678          \e   /   /   /   /   /
679           `\-\-\-\-\-\-\-\-\-\-\-\-\-\*(Aq   X
681 .if n \{\
685 The horizontal line of history A\-\-\-Q is taken to be the first parent of each merge\&. The commits are:
687 .RS 4
688 .ie n \{\
689 \h'-04'\(bu\h'+03'\c
691 .el \{\
692 .sp -1
693 .IP \(bu 2.3
695 \fBI\fR
696 is the initial commit, in which
697 \fBfoo\fR
698 exists with contents
699 \(lqasdf\(rq, and a file
700 \fBquux\fR
701 exists with contents
702 \(lqquux\(rq\&. Initial commits are compared to an empty tree, so
703 \fBI\fR
704 is !TREESAME\&.
707 .RS 4
708 .ie n \{\
709 \h'-04'\(bu\h'+03'\c
711 .el \{\
712 .sp -1
713 .IP \(bu 2.3
716 \fBA\fR,
717 \fBfoo\fR
718 contains just
719 \(lqfoo\(rq\&.
722 .RS 4
723 .ie n \{\
724 \h'-04'\(bu\h'+03'\c
726 .el \{\
727 .sp -1
728 .IP \(bu 2.3
730 \fBB\fR
731 contains the same change as
732 \fBA\fR\&. Its merge
733 \fBM\fR
734 is trivial and hence TREESAME to all parents\&.
737 .RS 4
738 .ie n \{\
739 \h'-04'\(bu\h'+03'\c
741 .el \{\
742 .sp -1
743 .IP \(bu 2.3
745 \fBC\fR
746 does not change
747 \fBfoo\fR, but its merge
748 \fBN\fR
749 changes it to
750 \(lqfoobar\(rq, so it is not TREESAME to any parent\&.
753 .RS 4
754 .ie n \{\
755 \h'-04'\(bu\h'+03'\c
757 .el \{\
758 .sp -1
759 .IP \(bu 2.3
761 \fBD\fR
762 sets
763 \fBfoo\fR
765 \(lqbaz\(rq\&. Its merge
766 \fBO\fR
767 combines the strings from
768 \fBN\fR
770 \fBD\fR
772 \(lqfoobarbaz\(rq; i\&.e\&., it is not TREESAME to any parent\&.
775 .RS 4
776 .ie n \{\
777 \h'-04'\(bu\h'+03'\c
779 .el \{\
780 .sp -1
781 .IP \(bu 2.3
783 \fBE\fR
784 changes
785 \fBquux\fR
787 \(lqxyzzy\(rq, and its merge
788 \fBP\fR
789 combines the strings to
790 \(lqquux xyzzy\(rq\&.
791 \fBP\fR
792 is TREESAME to
793 \fBO\fR, but not to
794 \fBE\fR\&.
797 .RS 4
798 .ie n \{\
799 \h'-04'\(bu\h'+03'\c
801 .el \{\
802 .sp -1
803 .IP \(bu 2.3
805 \fBX\fR
806 is an independent root commit that added a new file
807 \fBside\fR, and
808 \fBY\fR
809 modified it\&.
810 \fBY\fR
811 is TREESAME to
812 \fBX\fR\&. Its merge
813 \fBQ\fR
814 added
815 \fBside\fR
817 \fBP\fR, and
818 \fBQ\fR
819 is TREESAME to
820 \fBP\fR, but not to
821 \fBY\fR\&.
824 \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\&.
826 Default mode
827 .RS 4
828 Commits are included if they are not TREESAME to any parent (though this can be changed, see
829 \fB\-\-sparse\fR
830 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\&.
832 This results in:
834 .if n \{\
835 .RS 4
838           \&.\-A\-\-\-N\-\-\-O
839          /     /   /
840         I\-\-\-\-\-\-\-\-\-D
842 .if n \{\
846 Note how the rule to only follow the TREESAME parent, if one is available, removed
847 \fBB\fR
848 from consideration entirely\&.
849 \fBC\fR
850 was considered via
851 \fBN\fR, but is TREESAME\&. Root commits are compared to an empty tree, so
852 \fBI\fR
853 is !TREESAME\&.
855 Parent/child relations are only visible with
856 \fB\-\-parents\fR, but that does not affect the commits selected in default mode, so we have shown the parent lines\&.
859 \-\-full\-history without parent rewriting
860 .RS 4
861 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
863 .if n \{\
864 .RS 4
867         I  A  B  N  D  O  P  Q
869 .if n \{\
873 \fBM\fR
874 was excluded because it is TREESAME to both parents\&.
875 \fBE\fR,
876 \fBC\fR
878 \fBB\fR
879 were all walked, but only
880 \fBB\fR
881 was !TREESAME, so the others do not appear\&.
883 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\&.
886 \-\-full\-history with parent rewriting
887 .RS 4
888 Ordinary commits are only included if they are !TREESAME (though this can be changed, see
889 \fB\-\-sparse\fR
890 below)\&.
892 Merges are always included\&. However, their parent list is rewritten: Along each parent, prune away commits that are not included themselves\&. This results in
894 .if n \{\
895 .RS 4
898           \&.\-A\-\-\-M\-\-\-N\-\-\-O\-\-\-P\-\-\-Q
899          /     /   /   /   /
900         I     B   /   D   /
901          \e   /   /   /   /
902           `\-\-\-\-\-\-\-\-\-\-\-\-\-\*(Aq
904 .if n \{\
908 Compare to
909 \fB\-\-full\-history\fR
910 without rewriting above\&. Note that
911 \fBE\fR
912 was pruned away because it is TREESAME, but the parent list of P was rewritten to contain
913 \fBE\fR\*(Aqs parent
914 \fBI\fR\&. The same happened for
915 \fBC\fR
917 \fBN\fR, and
918 \fBX\fR,
919 \fBY\fR
921 \fBQ\fR\&.
924 In addition to the above settings, you can change whether TREESAME affects inclusion:
926 \-\-dense
927 .RS 4
928 Commits that are walked are included if they are not TREESAME to any parent\&.
931 \-\-sparse
932 .RS 4
933 All commits that are walked are included\&.
935 Note that without
936 \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\&.
939 \-\-simplify\-merges
940 .RS 4
941 First, build a history graph in the same way that
942 \fB\-\-full\-history\fR
943 with parent rewriting does (see above)\&.
945 Then simplify each commit
946 \fBC\fR
947 to its replacement
948 \fBC\*(Aq\fR
949 in the final history according to the following rules:
951 .RS 4
952 .ie n \{\
953 \h'-04'\(bu\h'+03'\c
955 .el \{\
956 .sp -1
957 .IP \(bu 2.3
960 \fBC\*(Aq\fR
962 \fBC\fR\&.
965 .RS 4
966 .ie n \{\
967 \h'-04'\(bu\h'+03'\c
969 .el \{\
970 .sp -1
971 .IP \(bu 2.3
973 Replace each parent
974 \fBP\fR
976 \fBC\*(Aq\fR
977 with its simplification
978 \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\&.
981 .RS 4
982 .ie n \{\
983 \h'-04'\(bu\h'+03'\c
985 .el \{\
986 .sp -1
987 .IP \(bu 2.3
989 If after this parent rewriting,
990 \fBC\*(Aq\fR
991 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\&.
994 The effect of this is best shown by way of comparing to
995 \fB\-\-full\-history\fR
996 with parent rewriting\&. The example turns into:
998 .if n \{\
999 .RS 4
1002           \&.\-A\-\-\-M\-\-\-N\-\-\-O
1003          /     /       /
1004         I     B       D
1005          \e   /       /
1006           `\-\-\-\-\-\-\-\-\-\*(Aq
1008 .if n \{\
1012 Note the major differences in
1013 \fBN\fR,
1014 \fBP\fR, and
1015 \fBQ\fR
1016 over
1017 \fB\-\-full\-history\fR:
1019 .RS 4
1020 .ie n \{\
1021 \h'-04'\(bu\h'+03'\c
1023 .el \{\
1024 .sp -1
1025 .IP \(bu 2.3
1027 \fBN\fR\*(Aqs parent list had
1028 \fBI\fR
1029 removed, because it is an ancestor of the other parent
1030 \fBM\fR\&. Still,
1031 \fBN\fR
1032 remained because it is !TREESAME\&.
1035 .RS 4
1036 .ie n \{\
1037 \h'-04'\(bu\h'+03'\c
1039 .el \{\
1040 .sp -1
1041 .IP \(bu 2.3
1043 \fBP\fR\*(Aqs parent list similarly had
1044 \fBI\fR
1045 removed\&.
1046 \fBP\fR
1047 was then removed completely, because it had one parent and is TREESAME\&.
1050 .RS 4
1051 .ie n \{\
1052 \h'-04'\(bu\h'+03'\c
1054 .el \{\
1055 .sp -1
1056 .IP \(bu 2.3
1058 \fBQ\fR\*(Aqs parent list had
1059 \fBY\fR
1060 simplified to
1061 \fBX\fR\&.
1062 \fBX\fR
1063 was then removed, because it was a TREESAME root\&.
1064 \fBQ\fR
1065 was then removed completely, because it had one parent and is TREESAME\&.
1069 There is another simplification mode available:
1071 \-\-ancestry\-path[=<commit>]
1072 .RS 4
1073 Limit the displayed commits to those which are an ancestor of <commit>, or which are a descendant of <commit>, or are <commit> itself\&.
1075 As an example use case, consider the following commit history:
1077 .if n \{\
1078 .RS 4
1081             D\-\-\-E\-\-\-\-\-\-\-F
1082            /     \e       \e
1083           B\-\-\-C\-\-\-G\-\-\-H\-\-\-I\-\-\-J
1084          /                     \e
1085         A\-\-\-\-\-\-\-K\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-L\-\-M
1087 .if n \{\
1091 A regular
1092 \fID\&.\&.M\fR
1093 computes the set of commits that are ancestors of
1094 \fBM\fR, but excludes the ones that are ancestors of
1095 \fBD\fR\&. This is useful to see what happened to the history leading to
1096 \fBM\fR
1097 since
1098 \fBD\fR, in the sense that
1099 \(lqwhat does \fBM\fR have that did not exist in \fBD\fR\(rq\&. The result in this example would be all the commits, except
1100 \fBA\fR
1102 \fBB\fR
1103 (and
1104 \fBD\fR
1105 itself, of course)\&.
1107 When we want to find out what commits in
1108 \fBM\fR
1109 are contaminated with the bug introduced by
1110 \fBD\fR
1111 and need fixing, however, we might want to view only the subset of
1112 \fID\&.\&.M\fR
1113 that are actually descendants of
1114 \fBD\fR, i\&.e\&. excluding
1115 \fBC\fR
1117 \fBK\fR\&. This is exactly what the
1118 \fB\-\-ancestry\-path\fR
1119 option does\&. Applied to the
1120 \fID\&.\&.M\fR
1121 range, it results in:
1123 .if n \{\
1124 .RS 4
1127                 E\-\-\-\-\-\-\-F
1128                  \e       \e
1129                   G\-\-\-H\-\-\-I\-\-\-J
1130                                \e
1131                                 L\-\-M
1133 .if n \{\
1137 We can also use
1138 \fB\-\-ancestry\-path=D\fR
1139 instead of
1140 \fB\-\-ancestry\-path\fR
1141 which means the same thing when applied to the
1142 \fID\&.\&.M\fR
1143 range but is just more explicit\&.
1145 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
1146 \fBD\&.\&.M\fR
1147 which contain that topic in their ancestry path\&. So, using
1148 \fB\-\-ancestry\-path=H D\&.\&.M\fR
1149 for example would result in:
1151 .if n \{\
1152 .RS 4
1155                 E
1156                  \e
1157                   G\-\-\-H\-\-\-I\-\-\-J
1158                                \e
1159                                 L\-\-M
1161 .if n \{\
1165 Whereas
1166 \fB\-\-ancestry\-path=K D\&.\&.M\fR
1167 would result in
1169 .if n \{\
1170 .RS 4
1173                 K\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-L\-\-M
1175 .if n \{\
1180 Before discussing another option, \fB\-\-show\-pulls\fR, we need to create a new example history\&.
1182 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:
1184 .if n \{\
1185 .RS 4
1188           \&.\-A\-\-\-M\-\-\-\-\-C\-\-N\-\-\-O\-\-\-P
1189          /     / \e  \e  \e/   /   /
1190         I     B   \e  R\-\*(Aq`\-Z\*(Aq   /
1191          \e   /     \e/         /
1192           \e /      /\e        /
1193            `\-\-\-X\-\-\*(Aq  `\-\-\-Y\-\-\*(Aq
1195 .if n \{\
1199 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\&.
1201 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:
1203 .if n \{\
1204 .RS 4
1207         I\-\-\-X
1209 .if n \{\
1213 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:
1215 .if n \{\
1216 .RS 4
1219           \&.\-A\-\-\-M\-\-\-\-\-\-\-\-N\-\-\-O\-\-\-P
1220          /     / \e  \e  \e/   /   /
1221         I     B   \e  R\-\*(Aq`\-\-\*(Aq   /
1222          \e   /     \e/         /
1223           \e /      /\e        /
1224            `\-\-\-X\-\-\*(Aq  `\-\-\-\-\-\-\*(Aq
1226 .if n \{\
1230 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\&.
1232 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:
1234 .if n \{\
1235 .RS 4
1238           \&.\-A\-\-\-M\-\-\&.
1239          /     /    \e
1240         I     B      R
1241          \e   /      /
1242           \e /      /
1243            `\-\-\-X\-\-\*(Aq
1245 .if n \{\
1249 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\&.
1251 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\&.
1253 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\&.
1255 \-\-show\-pulls
1256 .RS 4
1257 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\&.
1259 When a merge commit is included by
1260 \fB\-\-show\-pulls\fR, the merge is treated as if it "pulled" the change from another branch\&. When using
1261 \fB\-\-show\-pulls\fR
1262 on this example (and no other options) the resulting graph is:
1264 .if n \{\
1265 .RS 4
1268         I\-\-\-X\-\-\-R\-\-\-N
1270 .if n \{\
1274 Here, the merge commits
1275 \fBR\fR
1277 \fBN\fR
1278 are included because they pulled the commits
1279 \fBX\fR
1281 \fBR\fR
1282 into the base branch, respectively\&. These merges are the reason the commits
1283 \fBA\fR
1285 \fBB\fR
1286 do not appear in the default history\&.
1288 When
1289 \fB\-\-show\-pulls\fR
1290 is paired with
1291 \fB\-\-simplify\-merges\fR, the graph includes all of the necessary information:
1293 .if n \{\
1294 .RS 4
1297           \&.\-A\-\-\-M\-\-\&.   N
1298          /     /    \e /
1299         I     B      R
1300          \e   /      /
1301           \e /      /
1302            `\-\-\-X\-\-\*(Aq
1304 .if n \{\
1308 Notice that since
1309 \fBM\fR
1310 is reachable from
1311 \fBR\fR, the edge from
1312 \fBN\fR
1314 \fBM\fR
1315 was simplified away\&. However,
1316 \fBN\fR
1317 still appears in the history as an important commit because it "pulled" the change
1318 \fBR\fR
1319 into the main branch\&.
1322 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)\&.
1323 .SS "Bisection Helpers"
1325 \-\-bisect
1326 .RS 4
1327 Limit output to the one commit object which is roughly halfway between included and excluded commits\&. Note that the bad bisection ref
1328 \fBrefs/bisect/bad\fR
1329 is added to the included commits (if it exists) and the good bisection refs
1330 \fBrefs/bisect/good\-*\fR
1331 are added to the excluded commits (if they exist)\&. Thus, supposing there are no refs in
1332 \fBrefs/bisect/\fR, if
1334 .if n \{\
1335 .RS 4
1338         $ git rev\-list \-\-bisect foo ^bar ^baz
1340 .if n \{\
1344 outputs
1345 \fImidpoint\fR, the output of the two commands
1347 .if n \{\
1348 .RS 4
1351         $ git rev\-list foo ^midpoint
1352         $ git rev\-list midpoint ^bar ^baz
1354 .if n \{\
1358 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\&.
1361 \-\-bisect\-vars
1362 .RS 4
1363 This calculates the same as
1364 \fB\-\-bisect\fR, except that refs in
1365 \fBrefs/bisect/\fR
1366 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
1367 \fBbisect_rev\fR, and the expected number of commits to be tested after
1368 \fBbisect_rev\fR
1369 is tested to
1370 \fBbisect_nr\fR, the expected number of commits to be tested if
1371 \fBbisect_rev\fR
1372 turns out to be good to
1373 \fBbisect_good\fR, the expected number of commits to be tested if
1374 \fBbisect_rev\fR
1375 turns out to be bad to
1376 \fBbisect_bad\fR, and the number of commits we are bisecting right now to
1377 \fBbisect_all\fR\&.
1380 \-\-bisect\-all
1381 .RS 4
1382 This outputs all the commit objects between the included and excluded commits, ordered by their distance to the included and excluded commits\&. Refs in
1383 \fBrefs/bisect/\fR
1384 are not used\&. The farthest from them is displayed first\&. (This is the only one displayed by
1385 \fB\-\-bisect\fR\&.)
1387 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)\&.
1389 This option can be used along with
1390 \fB\-\-bisect\-vars\fR, in this case, after all the sorted commit objects, there will be the same text as if
1391 \fB\-\-bisect\-vars\fR
1392 had been used alone\&.
1394 .SS "Commit Ordering"
1396 By default, the commits are shown in reverse chronological order\&.
1398 \-\-date\-order
1399 .RS 4
1400 Show no parents before all of its children are shown, but otherwise show commits in the commit timestamp order\&.
1403 \-\-author\-date\-order
1404 .RS 4
1405 Show no parents before all of its children are shown, but otherwise show commits in the author timestamp order\&.
1408 \-\-topo\-order
1409 .RS 4
1410 Show no parents before all of its children are shown, and avoid showing commits on multiple lines of history intermixed\&.
1412 For example, in a commit history like this:
1414 .if n \{\
1415 .RS 4
1418     \-\-\-1\-\-\-\-2\-\-\-\-4\-\-\-\-7
1419         \e              \e
1420          3\-\-\-\-5\-\-\-\-6\-\-\-\-8\-\-\-
1422 .if n \{\
1426 where the numbers denote the order of commit timestamps,
1427 \fBgit rev\-list\fR
1428 and friends with
1429 \fB\-\-date\-order\fR
1430 show the commits in the timestamp order: 8 7 6 5 4 3 2 1\&.
1432 With
1433 \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\&.
1436 \-\-reverse
1437 .RS 4
1438 Output the commits chosen to be shown (see Commit Limiting section above) in reverse order\&. Cannot be combined with
1439 \fB\-\-walk\-reflogs\fR\&.
1441 .SS "Object Traversal"
1443 These options are mostly targeted for packing of Git repositories\&.
1445 \-\-objects
1446 .RS 4
1447 Print the object IDs of any object referenced by the listed commits\&.
1448 \fB\-\-objects foo ^bar\fR
1449 thus means
1450 \(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
1451 \fB\-\-object\-names\fR
1452 below\&.
1455 \-\-in\-commit\-order
1456 .RS 4
1457 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\&.
1460 \-\-objects\-edge
1461 .RS 4
1462 Similar to
1463 \fB\-\-objects\fR, but also print the IDs of excluded commits prefixed with a
1464 \(lq\-\(rq
1465 character\&. This is used by
1466 \fBgit-pack-objects\fR(1)
1467 to build a
1468 \(lqthin\(rq
1469 pack, which records objects in deltified form based on objects contained in these excluded commits to reduce network traffic\&.
1472 \-\-objects\-edge\-aggressive
1473 .RS 4
1474 Similar to
1475 \fB\-\-objects\-edge\fR, but it tries harder to find excluded commits at the cost of increased time\&. This is used instead of
1476 \fB\-\-objects\-edge\fR
1477 to build
1478 \(lqthin\(rq
1479 packs for shallow repositories\&.
1482 \-\-indexed\-objects
1483 .RS 4
1484 Pretend as if all trees and blobs used by the index are listed on the command line\&. Note that you probably want to use
1485 \fB\-\-objects\fR, too\&.
1488 \-\-unpacked
1489 .RS 4
1490 Only useful with
1491 \fB\-\-objects\fR; print the object IDs that are not in packs\&.
1494 \-\-object\-names
1495 .RS 4
1496 Only useful with
1497 \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\&.
1500 \-\-no\-object\-names
1501 .RS 4
1502 Only useful with
1503 \fB\-\-objects\fR; does not print the names of the object IDs that are found\&. This inverts
1504 \fB\-\-object\-names\fR\&. This flag allows the output to be more easily parsed by commands such as
1505 \fBgit-cat-file\fR(1)\&.
1508 \-\-filter=<filter\-spec>
1509 .RS 4
1510 Only useful with one of the
1511 \fB\-\-objects*\fR; omits objects (usually blobs) from the list of printed objects\&. The
1512 \fI<filter\-spec>\fR
1513 may be one of the following:
1515 The form
1516 \fI\-\-filter=blob:none\fR
1517 omits all blobs\&.
1519 The form
1520 \fI\-\-filter=blob:limit=<n>[kmg]\fR
1521 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,
1522 \fIblob:limit=1k\fR
1523 is the same as
1524 \fIblob:limit=1024\fR\&.
1526 The form
1527 \fI\-\-filter=object:type=(tag|commit|tree|blob)\fR
1528 omits all objects which are not of the requested type\&.
1530 The form
1531 \fI\-\-filter=sparse:oid=<blob\-ish>\fR
1532 uses a sparse\-checkout specification contained in the blob (or blob\-expression)
1533 \fI<blob\-ish>\fR
1534 to omit blobs that would not be required for a sparse checkout on the requested refs\&.
1536 The form
1537 \fI\-\-filter=tree:<depth>\fR
1538 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\&.
1540 Note that the form
1541 \fI\-\-filter=sparse:path=<path>\fR
1542 that wants to read from an arbitrary path on the filesystem has been dropped for security reasons\&.
1544 Multiple
1545 \fI\-\-filter=\fR
1546 flags can be specified to combine filters\&. Only objects which are accepted by every filter are included\&.
1548 The form
1549 \fI\-\-filter=combine:<filter1>+<filter2>+\&...\:<filterN>\fR
1550 can also be used to combined several filters, but this is harder than just repeating the
1551 \fI\-\-filter\fR
1552 flag and is usually not necessary\&. Filters are joined by
1553 \fI+\fR
1554 and individual filters are %\-encoded (i\&.e\&. URL\-encoded)\&. Besides the
1555 \fI+\fR
1557 \fI%\fR
1558 characters, the following characters are reserved and also must be encoded:
1559 \fB~!@#$^&*()[]{}\e;",<>?\fR\fB\*(Aq`\fR
1560 as well as all characters with ASCII code <=
1561 \fB0x20\fR, which includes space and newline\&.
1563 Other arbitrary characters can also be encoded\&. For instance,
1564 \fIcombine:tree:3+blob:none\fR
1566 \fIcombine:tree%3A3+blob%3Anone\fR
1567 are equivalent\&.
1570 \-\-no\-filter
1571 .RS 4
1572 Turn off any previous
1573 \fB\-\-filter=\fR
1574 argument\&.
1577 \-\-filter\-provided\-objects
1578 .RS 4
1579 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
1580 \fB\-\-filter=\fR\&.
1583 \-\-filter\-print\-omitted
1584 .RS 4
1585 Only useful with
1586 \fB\-\-filter=\fR; prints a list of the objects omitted by the filter\&. Object IDs are prefixed with a
1587 \(lq~\(rq
1588 character\&.
1591 \-\-missing=<missing\-action>
1592 .RS 4
1593 A debug option to help with future "partial clone" development\&. This option specifies how missing objects are handled\&.
1595 The form
1596 \fI\-\-missing=error\fR
1597 requests that rev\-list stop with an error if a missing object is encountered\&. This is the default action\&.
1599 The form
1600 \fI\-\-missing=allow\-any\fR
1601 will allow object traversal to continue if a missing object is encountered\&. Missing objects will silently be omitted from the results\&.
1603 The form
1604 \fI\-\-missing=allow\-promisor\fR
1605 is like
1606 \fIallow\-any\fR, but will only allow object traversal to continue for EXPECTED promisor missing objects\&. Unexpected missing objects will raise an error\&.
1608 The form
1609 \fI\-\-missing=print\fR
1610 is like
1611 \fIallow\-any\fR, but will also print a list of the missing objects\&. Object IDs are prefixed with a
1612 \(lq?\(rq
1613 character\&.
1615 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\&.
1618 \-\-exclude\-promisor\-objects
1619 .RS 4
1620 (For internal use only\&.) Prefilter object traversal at promisor boundary\&. This is used with partial clone\&. This is stronger than
1621 \fB\-\-missing=allow\-promisor\fR
1622 because it limits the traversal, rather than just silencing errors about missing objects\&.
1625 \-\-no\-walk[=(sorted|unsorted)]
1626 .RS 4
1627 Only show the given commits, but do not traverse their ancestors\&. This has no effect if a range is specified\&. If the argument
1628 \fBunsorted\fR
1629 is given, the commits are shown in the order they were given on the command line\&. Otherwise (if
1630 \fBsorted\fR
1631 or no argument was given), the commits are shown in reverse chronological order by commit time\&. Cannot be combined with
1632 \fB\-\-graph\fR\&.
1635 \-\-do\-walk
1636 .RS 4
1637 Overrides a previous
1638 \fB\-\-no\-walk\fR\&.
1640 .SS "Commit Formatting"
1642 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)
1644 \-\-pretty[=<format>], \-\-format=<format>
1645 .RS 4
1646 Pretty\-print the contents of the commit logs in a given format, where
1647 \fI<format>\fR
1648 can be one of
1649 \fIoneline\fR,
1650 \fIshort\fR,
1651 \fImedium\fR,
1652 \fIfull\fR,
1653 \fIfuller\fR,
1654 \fIreference\fR,
1655 \fIemail\fR,
1656 \fIraw\fR,
1657 \fIformat:<string>\fR
1659 \fItformat:<string>\fR\&. When
1660 \fI<format>\fR
1661 is none of the above, and has
1662 \fI%placeholder\fR
1663 in it, it acts as if
1664 \fI\-\-pretty=tformat:<format>\fR
1665 were given\&.
1667 See the "PRETTY FORMATS" section for some additional details for each format\&. When
1668 \fI=<format>\fR
1669 part is omitted, it defaults to
1670 \fImedium\fR\&.
1672 Note: you can specify the default pretty format in the repository configuration (see
1673 \fBgit-config\fR(1))\&.
1676 \-\-abbrev\-commit
1677 .RS 4
1678 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\&.
1680 This should make "\-\-pretty=oneline" a whole lot more readable for people using 80\-column terminals\&.
1683 \-\-no\-abbrev\-commit
1684 .RS 4
1685 Show the full 40\-byte hexadecimal commit object name\&. This negates
1686 \fB\-\-abbrev\-commit\fR, either explicit or implied by other options such as "\-\-oneline"\&. It also overrides the
1687 \fBlog\&.abbrevCommit\fR
1688 variable\&.
1691 \-\-oneline
1692 .RS 4
1693 This is a shorthand for "\-\-pretty=oneline \-\-abbrev\-commit" used together\&.
1696 \-\-encoding=<encoding>
1697 .RS 4
1698 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
1699 \fBX\fR
1700 and we are outputting in
1701 \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\&.
1704 \-\-expand\-tabs=<n>, \-\-expand\-tabs, \-\-no\-expand\-tabs
1705 .RS 4
1706 Perform a tab expansion (replace each tab with enough spaces to fill to the next display column that is a multiple of
1707 \fI<n>\fR) in the log message before showing it in the output\&.
1708 \fB\-\-expand\-tabs\fR
1709 is a short\-hand for
1710 \fB\-\-expand\-tabs=8\fR, and
1711 \fB\-\-no\-expand\-tabs\fR
1712 is a short\-hand for
1713 \fB\-\-expand\-tabs=0\fR, which disables tab expansion\&.
1715 By default, tabs are expanded in pretty formats that indent the log message by 4 spaces (i\&.e\&.
1716 \fImedium\fR, which is the default,
1717 \fIfull\fR, and
1718 \fIfuller\fR)\&.
1721 \-\-show\-signature
1722 .RS 4
1723 Check the validity of a signed commit object by passing the signature to
1724 \fBgpg \-\-verify\fR
1725 and show the output\&.
1728 \-\-relative\-date
1729 .RS 4
1730 Synonym for
1731 \fB\-\-date=relative\fR\&.
1734 \-\-date=<format>
1735 .RS 4
1736 Only takes effect for dates shown in human\-readable format, such as when using
1737 \fB\-\-pretty\fR\&.
1738 \fBlog\&.date\fR
1739 config variable sets a default value for the log command\(cqs
1740 \fB\-\-date\fR
1741 option\&. By default, dates are shown in the original time zone (either committer\(cqs or author\(cqs)\&. If
1742 \fB\-local\fR
1743 is appended to the format (e\&.g\&.,
1744 \fBiso\-local\fR), the user\(cqs local time zone is used instead\&.
1746 \fB\-\-date=relative\fR
1747 shows dates relative to the current time, e\&.g\&.
1748 \(lq2 hours ago\(rq\&. The
1749 \fB\-local\fR
1750 option has no effect for
1751 \fB\-\-date=relative\fR\&.
1753 \fB\-\-date=local\fR
1754 is an alias for
1755 \fB\-\-date=default\-local\fR\&.
1757 \fB\-\-date=iso\fR
1759 \fB\-\-date=iso8601\fR) shows timestamps in a ISO 8601\-like format\&. The differences to the strict ISO 8601 format are:
1761 .RS 4
1762 .ie n \{\
1763 \h'-04'\(bu\h'+03'\c
1765 .el \{\
1766 .sp -1
1767 .IP \(bu 2.3
1769 a space instead of the
1770 \fBT\fR
1771 date/time delimiter
1774 .RS 4
1775 .ie n \{\
1776 \h'-04'\(bu\h'+03'\c
1778 .el \{\
1779 .sp -1
1780 .IP \(bu 2.3
1782 a space between time and time zone
1785 .RS 4
1786 .ie n \{\
1787 \h'-04'\(bu\h'+03'\c
1789 .el \{\
1790 .sp -1
1791 .IP \(bu 2.3
1793 no colon between hours and minutes of the time zone
1796 \fB\-\-date=iso\-strict\fR
1798 \fB\-\-date=iso8601\-strict\fR) shows timestamps in strict ISO 8601 format\&.
1800 \fB\-\-date=rfc\fR
1802 \fB\-\-date=rfc2822\fR) shows timestamps in RFC 2822 format, often found in email messages\&.
1804 \fB\-\-date=short\fR
1805 shows only the date, but not the time, in
1806 \fBYYYY\-MM\-DD\fR
1807 format\&.
1809 \fB\-\-date=raw\fR
1810 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
1811 \fB+\fR
1813 \fB\-\fR
1814 with four digits; the first two are hours, and the second two are minutes)\&. I\&.e\&., as if the timestamp were formatted with
1815 \fBstrftime("%s %z")\fR)\&. Note that the
1816 \fB\-local\fR
1817 option does not affect the seconds\-since\-epoch value (which is always measured in UTC), but does switch the accompanying timezone value\&.
1819 \fB\-\-date=human\fR
1820 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\&.
1822 \fB\-\-date=unix\fR
1823 shows the date as a Unix epoch timestamp (seconds since 1970)\&. As with
1824 \fB\-\-raw\fR, this is always in UTC and therefore
1825 \fB\-local\fR
1826 has no effect\&.
1828 \fB\-\-date=format:\&.\&.\&.\fR
1829 feeds the format
1830 \fB\&.\&.\&.\fR
1831 to your system
1832 \fBstrftime\fR, except for %s, %z, and %Z, which are handled internally\&. Use
1833 \fB\-\-date=format:%c\fR
1834 to show the date in your system locale\(cqs preferred format\&. See the
1835 \fBstrftime\fR
1836 manual for a complete list of format placeholders\&. When using
1837 \fB\-local\fR, the correct syntax is
1838 \fB\-\-date=format\-local:\&.\&.\&.\fR\&.
1840 \fB\-\-date=default\fR
1841 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\&.
1842 \fBThu Jan 1 00:00:00 1970 +0000\fR\&.
1845 \-\-header
1846 .RS 4
1847 Print the contents of the commit in raw\-format; each record is separated with a NUL character\&.
1850 \-\-no\-commit\-header
1851 .RS 4
1852 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\&.
1855 \-\-commit\-header
1856 .RS 4
1857 Overrides a previous
1858 \fB\-\-no\-commit\-header\fR\&.
1861 \-\-parents
1862 .RS 4
1863 Print also the parents of the commit (in the form "commit parent\&...\:")\&. Also enables parent rewriting, see
1864 \fIHistory Simplification\fR
1865 above\&.
1868 \-\-children
1869 .RS 4
1870 Print also the children of the commit (in the form "commit child\&...\:")\&. Also enables parent rewriting, see
1871 \fIHistory Simplification\fR
1872 above\&.
1875 \-\-timestamp
1876 .RS 4
1877 Print the raw commit timestamp\&.
1880 \-\-left\-right
1881 .RS 4
1882 Mark which side of a symmetric difference a commit is reachable from\&. Commits from the left side are prefixed with
1883 \fB<\fR
1884 and those from the right with
1885 \fB>\fR\&. If combined with
1886 \fB\-\-boundary\fR, those commits are prefixed with
1887 \fB\-\fR\&.
1889 For example, if you have this topology:
1891 .if n \{\
1892 .RS 4
1895              y\-\-\-b\-\-\-b  branch B
1896             / \e /
1897            /   \&.
1898           /   / \e
1899          o\-\-\-x\-\-\-a\-\-\-a  branch A
1901 .if n \{\
1905 you would get an output like this:
1907 .if n \{\
1908 .RS 4
1911         $ git rev\-list \-\-left\-right \-\-boundary \-\-pretty=oneline A\&.\&.\&.B
1913         >bbbbbbb\&.\&.\&. 3rd on b
1914         >bbbbbbb\&.\&.\&. 2nd on b
1915         <aaaaaaa\&.\&.\&. 3rd on a
1916         <aaaaaaa\&.\&.\&. 2nd on a
1917         \-yyyyyyy\&.\&.\&. 1st on b
1918         \-xxxxxxx\&.\&.\&. 1st on a
1920 .if n \{\
1925 \-\-graph
1926 .RS 4
1927 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
1928 \fB\-\-no\-walk\fR\&.
1930 This enables parent rewriting, see
1931 \fIHistory Simplification\fR
1932 above\&.
1934 This implies the
1935 \fB\-\-topo\-order\fR
1936 option by default, but the
1937 \fB\-\-date\-order\fR
1938 option may also be specified\&.
1941 \-\-show\-linear\-break[=<barrier>]
1942 .RS 4
1943 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
1944 \fB<barrier>\fR
1945 is specified, it is the string that will be shown instead of the default one\&.
1948 \-\-count
1949 .RS 4
1950 Print a number stating how many commits would have been listed, and suppress all other output\&. When used together with
1951 \fB\-\-left\-right\fR, instead print the counts for left and right commits, separated by a tab\&. When used together with
1952 \fB\-\-cherry\-mark\fR, omit patch equivalent commits from these counts and print the count for equivalent commits separated by a tab\&.
1954 .SH "PRETTY FORMATS"
1956 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\&.
1958 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:
1960 .RS 4
1961 .ie n \{\
1962 \h'-04'\(bu\h'+03'\c
1964 .el \{\
1965 .sp -1
1966 .IP \(bu 2.3
1968 \fIoneline\fR
1970 .if n \{\
1971 .RS 4
1974 <hash> <title\-line>
1976 .if n \{\
1980 This is designed to be as compact as possible\&.
1983 .RS 4
1984 .ie n \{\
1985 \h'-04'\(bu\h'+03'\c
1987 .el \{\
1988 .sp -1
1989 .IP \(bu 2.3
1991 \fIshort\fR
1993 .if n \{\
1994 .RS 4
1997 commit <hash>
1998 Author: <author>
2000 .if n \{\
2004 .if n \{\
2005 .RS 4
2008 <title\-line>
2010 .if n \{\
2015 .RS 4
2016 .ie n \{\
2017 \h'-04'\(bu\h'+03'\c
2019 .el \{\
2020 .sp -1
2021 .IP \(bu 2.3
2023 \fImedium\fR
2025 .if n \{\
2026 .RS 4
2029 commit <hash>
2030 Author: <author>
2031 Date:   <author\-date>
2033 .if n \{\
2037 .if n \{\
2038 .RS 4
2041 <title\-line>
2043 .if n \{\
2047 .if n \{\
2048 .RS 4
2051 <full\-commit\-message>
2053 .if n \{\
2058 .RS 4
2059 .ie n \{\
2060 \h'-04'\(bu\h'+03'\c
2062 .el \{\
2063 .sp -1
2064 .IP \(bu 2.3
2066 \fIfull\fR
2068 .if n \{\
2069 .RS 4
2072 commit <hash>
2073 Author: <author>
2074 Commit: <committer>
2076 .if n \{\
2080 .if n \{\
2081 .RS 4
2084 <title\-line>
2086 .if n \{\
2090 .if n \{\
2091 .RS 4
2094 <full\-commit\-message>
2096 .if n \{\
2101 .RS 4
2102 .ie n \{\
2103 \h'-04'\(bu\h'+03'\c
2105 .el \{\
2106 .sp -1
2107 .IP \(bu 2.3
2109 \fIfuller\fR
2111 .if n \{\
2112 .RS 4
2115 commit <hash>
2116 Author:     <author>
2117 AuthorDate: <author\-date>
2118 Commit:     <committer>
2119 CommitDate: <committer\-date>
2121 .if n \{\
2125 .if n \{\
2126 .RS 4
2129 <title\-line>
2131 .if n \{\
2135 .if n \{\
2136 .RS 4
2139 <full\-commit\-message>
2141 .if n \{\
2146 .RS 4
2147 .ie n \{\
2148 \h'-04'\(bu\h'+03'\c
2150 .el \{\
2151 .sp -1
2152 .IP \(bu 2.3
2154 \fIreference\fR
2156 .if n \{\
2157 .RS 4
2160 <abbrev\-hash> (<title\-line>, <short\-author\-date>)
2162 .if n \{\
2166 This format is used to refer to another commit in a commit message and is the same as
2167 \fB\-\-pretty=\*(Aqformat:%C(auto)%h (%s, %ad)\*(Aq\fR\&. By default, the date is formatted with
2168 \fB\-\-date=short\fR
2169 unless another
2170 \fB\-\-date\fR
2171 option is explicitly specified\&. As with any
2172 \fBformat:\fR
2173 with format placeholders, its output is not affected by other options like
2174 \fB\-\-decorate\fR
2176 \fB\-\-walk\-reflogs\fR\&.
2179 .RS 4
2180 .ie n \{\
2181 \h'-04'\(bu\h'+03'\c
2183 .el \{\
2184 .sp -1
2185 .IP \(bu 2.3
2187 \fIemail\fR
2189 .if n \{\
2190 .RS 4
2193 From <hash> <date>
2194 From: <author>
2195 Date: <author\-date>
2196 Subject: [PATCH] <title\-line>
2198 .if n \{\
2202 .if n \{\
2203 .RS 4
2206 <full\-commit\-message>
2208 .if n \{\
2213 .RS 4
2214 .ie n \{\
2215 \h'-04'\(bu\h'+03'\c
2217 .el \{\
2218 .sp -1
2219 .IP \(bu 2.3
2221 \fImboxrd\fR
2223 Like
2224 \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\&.
2227 .RS 4
2228 .ie n \{\
2229 \h'-04'\(bu\h'+03'\c
2231 .el \{\
2232 .sp -1
2233 .IP \(bu 2.3
2235 \fIraw\fR
2238 \fIraw\fR
2239 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
2240 \fIparents\fR
2241 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
2242 \fBgit log \-\-raw\fR\&. To get full object names in a raw diff format, use
2243 \fB\-\-no\-abbrev\fR\&.
2246 .RS 4
2247 .ie n \{\
2248 \h'-04'\(bu\h'+03'\c
2250 .el \{\
2251 .sp -1
2252 .IP \(bu 2.3
2254 \fIformat:<format\-string>\fR
2257 \fIformat:<format\-string>\fR
2258 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
2259 \fI%n\fR
2260 instead of
2261 \fI\en\fR\&.
2263 E\&.g,
2264 \fIformat:"The author of %h was %an, %ar%nThe title was >>%s<<%n"\fR
2265 would show something like this:
2267 .if n \{\
2268 .RS 4
2271 The author of fe6e0ee was Junio C Hamano, 23 hours ago
2272 The title was >>t4119: test autocomputing \-p<n> for traditional diff input\&.<<
2274 .if n \{\
2278 The placeholders are:
2280 .RS 4
2281 .ie n \{\
2282 \h'-04'\(bu\h'+03'\c
2284 .el \{\
2285 .sp -1
2286 .IP \(bu 2.3
2288 Placeholders that expand to a single literal character:
2290 \fI%n\fR
2291 .RS 4
2292 newline
2295 \fI%%\fR
2296 .RS 4
2297 a raw
2298 \fI%\fR
2301 \fI%x00\fR
2302 .RS 4
2303 \fI%x\fR
2304 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)\&.
2308 .RS 4
2309 .ie n \{\
2310 \h'-04'\(bu\h'+03'\c
2312 .el \{\
2313 .sp -1
2314 .IP \(bu 2.3
2316 Placeholders that affect formatting of later placeholders:
2318 \fI%Cred\fR
2319 .RS 4
2320 switch color to red
2323 \fI%Cgreen\fR
2324 .RS 4
2325 switch color to green
2328 \fI%Cblue\fR
2329 .RS 4
2330 switch color to blue
2333 \fI%Creset\fR
2334 .RS 4
2335 reset color
2338 \fI%C(\&...\:)\fR
2339 .RS 4
2340 color specification, as described under Values in the "CONFIGURATION FILE" section of
2341 \fBgit-config\fR(1)\&. By default, colors are shown only when enabled for log output (by
2342 \fBcolor\&.diff\fR,
2343 \fBcolor\&.ui\fR, or
2344 \fB\-\-color\fR, and respecting the
2345 \fBauto\fR
2346 settings of the former if we are going to a terminal)\&.
2347 \fB%C(auto,\&.\&.\&.)\fR
2348 is accepted as a historical synonym for the default (e\&.g\&.,
2349 \fB%C(auto,red)\fR)\&. Specifying
2350 \fB%C(always,\&.\&.\&.)\fR
2351 will show the colors even when color is not otherwise enabled (though consider just using
2352 \fB\-\-color=always\fR
2353 to enable color for the whole output, including this format and anything else git might color)\&.
2354 \fBauto\fR
2355 alone (i\&.e\&.
2356 \fB%C(auto)\fR) will turn on auto coloring on the next placeholders until the color is switched again\&.
2359 \fI%m\fR
2360 .RS 4
2361 left (\fB<\fR), right (\fB>\fR) or boundary (\fB\-\fR) mark
2364 \fI%w([<w>[,<i1>[,<i2>]]])\fR
2365 .RS 4
2366 switch line wrapping, like the \-w option of
2367 \fBgit-shortlog\fR(1)\&.
2370 \fI%<( <N> [,trunc|ltrunc|mtrunc])\fR
2371 .RS 4
2372 make the next placeholder take at least N column widths, padding spaces on the right if necessary\&. Optionally truncate (with ellipsis
2373 \fI\&.\&.\fR) at the left (ltrunc)
2374 \fB\&.\&.ft\fR, the middle (mtrunc)
2375 \fBmi\&.\&.le\fR, or the end (trunc)
2376 \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\&.
2379 \fI%<|( <M> )\fR
2380 .RS 4
2381 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\&.
2384 \fI%>( <N> )\fR, \fI%>|( <M> )\fR
2385 .RS 4
2386 similar to
2387 \fI%<( <N> )\fR,
2388 \fI%<|( <M> )\fR
2389 respectively, but padding spaces on the left
2392 \fI%>>( <N> )\fR, \fI%>>|( <M> )\fR
2393 .RS 4
2394 similar to
2395 \fI%>( <N> )\fR,
2396 \fI%>|( <M> )\fR
2397 respectively, except that if the next placeholder takes more spaces than given and there are spaces on its left, use those spaces
2400 \fI%><( <N> )\fR, \fI%><|( <M> )\fR
2401 .RS 4
2402 similar to
2403 \fI%<( <N> )\fR,
2404 \fI%<|( <M> )\fR
2405 respectively, but padding both sides (i\&.e\&. the text is centered)
2409 .RS 4
2410 .ie n \{\
2411 \h'-04'\(bu\h'+03'\c
2413 .el \{\
2414 .sp -1
2415 .IP \(bu 2.3
2417 Placeholders that expand to information extracted from the commit:
2419 \fI%H\fR
2420 .RS 4
2421 commit hash
2424 \fI%h\fR
2425 .RS 4
2426 abbreviated commit hash
2429 \fI%T\fR
2430 .RS 4
2431 tree hash
2434 \fI%t\fR
2435 .RS 4
2436 abbreviated tree hash
2439 \fI%P\fR
2440 .RS 4
2441 parent hashes
2444 \fI%p\fR
2445 .RS 4
2446 abbreviated parent hashes
2449 \fI%an\fR
2450 .RS 4
2451 author name
2454 \fI%aN\fR
2455 .RS 4
2456 author name (respecting \&.mailmap, see
2457 \fBgit-shortlog\fR(1)
2459 \fBgit-blame\fR(1))
2462 \fI%ae\fR
2463 .RS 4
2464 author email
2467 \fI%aE\fR
2468 .RS 4
2469 author email (respecting \&.mailmap, see
2470 \fBgit-shortlog\fR(1)
2472 \fBgit-blame\fR(1))
2475 \fI%al\fR
2476 .RS 4
2477 author email local\-part (the part before the
2478 \fI@\fR
2479 sign)
2482 \fI%aL\fR
2483 .RS 4
2484 author local\-part (see
2485 \fI%al\fR) respecting \&.mailmap, see
2486 \fBgit-shortlog\fR(1)
2488 \fBgit-blame\fR(1))
2491 \fI%ad\fR
2492 .RS 4
2493 author date (format respects \-\-date= option)
2496 \fI%aD\fR
2497 .RS 4
2498 author date, RFC2822 style
2501 \fI%ar\fR
2502 .RS 4
2503 author date, relative
2506 \fI%at\fR
2507 .RS 4
2508 author date, UNIX timestamp
2511 \fI%ai\fR
2512 .RS 4
2513 author date, ISO 8601\-like format
2516 \fI%aI\fR
2517 .RS 4
2518 author date, strict ISO 8601 format
2521 \fI%as\fR
2522 .RS 4
2523 author date, short format (\fBYYYY\-MM\-DD\fR)
2526 \fI%ah\fR
2527 .RS 4
2528 author date, human style (like the
2529 \fB\-\-date=human\fR
2530 option of
2531 \fBgit-rev-list\fR(1))
2534 \fI%cn\fR
2535 .RS 4
2536 committer name
2539 \fI%cN\fR
2540 .RS 4
2541 committer name (respecting \&.mailmap, see
2542 \fBgit-shortlog\fR(1)
2544 \fBgit-blame\fR(1))
2547 \fI%ce\fR
2548 .RS 4
2549 committer email
2552 \fI%cE\fR
2553 .RS 4
2554 committer email (respecting \&.mailmap, see
2555 \fBgit-shortlog\fR(1)
2557 \fBgit-blame\fR(1))
2560 \fI%cl\fR
2561 .RS 4
2562 committer email local\-part (the part before the
2563 \fI@\fR
2564 sign)
2567 \fI%cL\fR
2568 .RS 4
2569 committer local\-part (see
2570 \fI%cl\fR) respecting \&.mailmap, see
2571 \fBgit-shortlog\fR(1)
2573 \fBgit-blame\fR(1))
2576 \fI%cd\fR
2577 .RS 4
2578 committer date (format respects \-\-date= option)
2581 \fI%cD\fR
2582 .RS 4
2583 committer date, RFC2822 style
2586 \fI%cr\fR
2587 .RS 4
2588 committer date, relative
2591 \fI%ct\fR
2592 .RS 4
2593 committer date, UNIX timestamp
2596 \fI%ci\fR
2597 .RS 4
2598 committer date, ISO 8601\-like format
2601 \fI%cI\fR
2602 .RS 4
2603 committer date, strict ISO 8601 format
2606 \fI%cs\fR
2607 .RS 4
2608 committer date, short format (\fBYYYY\-MM\-DD\fR)
2611 \fI%ch\fR
2612 .RS 4
2613 committer date, human style (like the
2614 \fB\-\-date=human\fR
2615 option of
2616 \fBgit-rev-list\fR(1))
2619 \fI%d\fR
2620 .RS 4
2621 ref names, like the \-\-decorate option of
2622 \fBgit-log\fR(1)
2625 \fI%D\fR
2626 .RS 4
2627 ref names without the " (", ")" wrapping\&.
2630 \fI%(decorate[:<options>])\fR
2631 .RS 4
2632 ref names with custom decorations\&. The
2633 \fBdecorate\fR
2634 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 (\fB%x2C\fR) and closing parentheses (\fB%x29\fR), due to their role in the option syntax\&.
2636 .RS 4
2637 .ie n \{\
2638 \h'-04'\(bu\h'+03'\c
2640 .el \{\
2641 .sp -1
2642 .IP \(bu 2.3
2644 \fIprefix=<value>\fR: Shown before the list of ref names\&. Defaults to "\ \&\fB(\fR"\&.
2647 .RS 4
2648 .ie n \{\
2649 \h'-04'\(bu\h'+03'\c
2651 .el \{\
2652 .sp -1
2653 .IP \(bu 2.3
2655 \fIsuffix=<value>\fR: Shown after the list of ref names\&. Defaults to "\fB)\fR"\&.
2658 .RS 4
2659 .ie n \{\
2660 \h'-04'\(bu\h'+03'\c
2662 .el \{\
2663 .sp -1
2664 .IP \(bu 2.3
2666 \fIseparator=<value>\fR: Shown between ref names\&. Defaults to "\fB,\fR\ \&"\&.
2669 .RS 4
2670 .ie n \{\
2671 \h'-04'\(bu\h'+03'\c
2673 .el \{\
2674 .sp -1
2675 .IP \(bu 2.3
2677 \fIpointer=<value>\fR: Shown between HEAD and the branch it points to, if any\&. Defaults to "\ \&\fB\->\fR\ \&"\&.
2680 .RS 4
2681 .ie n \{\
2682 \h'-04'\(bu\h'+03'\c
2684 .el \{\
2685 .sp -1
2686 .IP \(bu 2.3
2688 \fItag=<value>\fR: Shown before tag names\&. Defaults to "\fBtag:\fR\ \&"\&.
2693 For example, to produce decorations with no wrapping or tag annotations, and spaces as separators:
2696 \fB%(decorate:prefix=,suffix=,tag=,separator= )\fR
2698 \fI%(describe[:<options>])\fR
2699 .RS 4
2700 human\-readable name, like
2701 \fBgit-describe\fR(1); empty string for undescribable commits\&. The
2702 \fBdescribe\fR
2703 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\&.
2705 .RS 4
2706 .ie n \{\
2707 \h'-04'\(bu\h'+03'\c
2709 .el \{\
2710 .sp -1
2711 .IP \(bu 2.3
2713 \fItags[=<bool\-value>]\fR: Instead of only considering annotated tags, consider lightweight tags as well\&.
2716 .RS 4
2717 .ie n \{\
2718 \h'-04'\(bu\h'+03'\c
2720 .el \{\
2721 .sp -1
2722 .IP \(bu 2.3
2724 \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\&.
2727 .RS 4
2728 .ie n \{\
2729 \h'-04'\(bu\h'+03'\c
2731 .el \{\
2732 .sp -1
2733 .IP \(bu 2.3
2735 \fImatch=<pattern>\fR: Only consider tags matching the given
2736 \fBglob(7)\fR
2737 pattern, excluding the "refs/tags/" prefix\&.
2740 .RS 4
2741 .ie n \{\
2742 \h'-04'\(bu\h'+03'\c
2744 .el \{\
2745 .sp -1
2746 .IP \(bu 2.3
2748 \fIexclude=<pattern>\fR: Do not consider tags matching the given
2749 \fBglob(7)\fR
2750 pattern, excluding the "refs/tags/" prefix\&.
2754 \fI%S\fR
2755 .RS 4
2756 ref name given on the command line by which the commit was reached (like
2757 \fBgit log \-\-source\fR), only works with
2758 \fBgit log\fR
2761 \fI%e\fR
2762 .RS 4
2763 encoding
2766 \fI%s\fR
2767 .RS 4
2768 subject
2771 \fI%f\fR
2772 .RS 4
2773 sanitized subject line, suitable for a filename
2776 \fI%b\fR
2777 .RS 4
2778 body
2781 \fI%B\fR
2782 .RS 4
2783 raw body (unwrapped subject and body)
2786 \fI%GG\fR
2787 .RS 4
2788 raw verification message from GPG for a signed commit
2791 \fI%G?\fR
2792 .RS 4
2793 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
2796 \fI%GS\fR
2797 .RS 4
2798 show the name of the signer for a signed commit
2801 \fI%GK\fR
2802 .RS 4
2803 show the key used to sign a signed commit
2806 \fI%GF\fR
2807 .RS 4
2808 show the fingerprint of the key used to sign a signed commit
2811 \fI%GP\fR
2812 .RS 4
2813 show the fingerprint of the primary key whose subkey was used to sign a signed commit
2816 \fI%GT\fR
2817 .RS 4
2818 show the trust level for the key used to sign a signed commit
2821 \fI%gD\fR
2822 .RS 4
2823 reflog selector, e\&.g\&.,
2824 \fBrefs/stash@{1}\fR
2826 \fBrefs/stash@{2 minutes ago}\fR; the format follows the rules described for the
2827 \fB\-g\fR
2828 option\&. The portion before the
2829 \fB@\fR
2830 is the refname as given on the command line (so
2831 \fBgit log \-g refs/heads/master\fR
2832 would yield
2833 \fBrefs/heads/master@{0}\fR)\&.
2836 \fI%gd\fR
2837 .RS 4
2838 shortened reflog selector; same as
2839 \fB%gD\fR, but the refname portion is shortened for human readability (so
2840 \fBrefs/heads/master\fR
2841 becomes just
2842 \fBmaster\fR)\&.
2845 \fI%gn\fR
2846 .RS 4
2847 reflog identity name
2850 \fI%gN\fR
2851 .RS 4
2852 reflog identity name (respecting \&.mailmap, see
2853 \fBgit-shortlog\fR(1)
2855 \fBgit-blame\fR(1))
2858 \fI%ge\fR
2859 .RS 4
2860 reflog identity email
2863 \fI%gE\fR
2864 .RS 4
2865 reflog identity email (respecting \&.mailmap, see
2866 \fBgit-shortlog\fR(1)
2868 \fBgit-blame\fR(1))
2871 \fI%gs\fR
2872 .RS 4
2873 reflog subject
2876 \fI%(trailers[:<options>])\fR
2877 .RS 4
2878 display the trailers of the body as interpreted by
2879 \fBgit-interpret-trailers\fR(1)\&. The
2880 \fBtrailers\fR
2881 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\&.
2883 .RS 4
2884 .ie n \{\
2885 \h'-04'\(bu\h'+03'\c
2887 .el \{\
2888 .sp -1
2889 .IP \(bu 2.3
2891 \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
2892 \fBonly\fR
2893 option so that non\-trailer lines in the trailer block are hidden\&. If that is not desired it can be disabled with
2894 \fBonly=false\fR\&. E\&.g\&.,
2895 \fB%(trailers:key=Reviewed\-by)\fR
2896 shows trailer lines with key
2897 \fBReviewed\-by\fR\&.
2900 .RS 4
2901 .ie n \{\
2902 \h'-04'\(bu\h'+03'\c
2904 .el \{\
2905 .sp -1
2906 .IP \(bu 2.3
2908 \fIonly[=<bool>]\fR: select whether non\-trailer lines from the trailer block should be included\&.
2911 .RS 4
2912 .ie n \{\
2913 \h'-04'\(bu\h'+03'\c
2915 .el \{\
2916 .sp -1
2917 .IP \(bu 2.3
2919 \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
2920 \fB%x2C\fR
2921 as it would otherwise be parsed as next option\&. E\&.g\&.,
2922 \fB%(trailers:key=Ticket,separator=%x2C )\fR
2923 shows all trailer lines whose key is "Ticket" separated by a comma and a space\&.
2926 .RS 4
2927 .ie n \{\
2928 \h'-04'\(bu\h'+03'\c
2930 .el \{\
2931 .sp -1
2932 .IP \(bu 2.3
2934 \fIunfold[=<bool>]\fR: make it behave as if interpret\-trailer\(cqs
2935 \fB\-\-unfold\fR
2936 option was given\&. E\&.g\&.,
2937 \fB%(trailers:only,unfold=true)\fR
2938 unfolds and shows all trailer lines\&.
2941 .RS 4
2942 .ie n \{\
2943 \h'-04'\(bu\h'+03'\c
2945 .el \{\
2946 .sp -1
2947 .IP \(bu 2.3
2949 \fIkeyonly[=<bool>]\fR: only show the key part of the trailer\&.
2952 .RS 4
2953 .ie n \{\
2954 \h'-04'\(bu\h'+03'\c
2956 .el \{\
2957 .sp -1
2958 .IP \(bu 2.3
2960 \fIvalueonly[=<bool>]\fR: only show the value part of the trailer\&.
2963 .RS 4
2964 .ie n \{\
2965 \h'-04'\(bu\h'+03'\c
2967 .el \{\
2968 .sp -1
2969 .IP \(bu 2.3
2971 \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
2972 \fIseparator=<sep>\fR
2973 above\&.
2977 .if n \{\
2980 .RS 4
2981 .it 1 an-trap
2982 .nr an-no-space-flag 1
2983 .nr an-break-flag 1
2985 .ps +1
2986 \fBNote\fR
2987 .ps -1
2990 Some placeholders may depend on other options given to the revision traversal engine\&. For example, the \fB%g*\fR reflog options will insert an empty string unless we are traversing reflog entries (e\&.g\&., by \fBgit log \-g\fR)\&. The \fB%d\fR and \fB%D\fR placeholders will use the "short" decoration format if \fB\-\-decorate\fR was not already provided on the command line\&.
2991 .sp .5v
2994 The boolean options accept an optional value \fB[=<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\&.
2996 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\&.
2998 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\&.
3000 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\&.
3002 .RS 4
3003 .ie n \{\
3004 \h'-04'\(bu\h'+03'\c
3006 .el \{\
3007 .sp -1
3008 .IP \(bu 2.3
3010 \fItformat:\fR
3013 \fItformat:\fR
3014 format works exactly like
3015 \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:
3017 .if n \{\
3018 .RS 4
3021 $ git log \-2 \-\-pretty=format:%h 4da45bef \e
3022   | perl \-pe \*(Aq$_ \&.= " \-\- NO NEWLINE\en" unless /\en/\*(Aq
3023 4da45be
3024 7134973 \-\- NO NEWLINE
3026 $ git log \-2 \-\-pretty=tformat:%h 4da45bef \e
3027   | perl \-pe \*(Aq$_ \&.= " \-\- NO NEWLINE\en" unless /\en/\*(Aq
3028 4da45be
3029 7134973
3031 .if n \{\
3035 In addition, any unrecognized string that has a
3036 \fB%\fR
3037 in it is interpreted as if it has
3038 \fBtformat:\fR
3039 in front of it\&. For example, these two are equivalent:
3041 .if n \{\
3042 .RS 4
3045 $ git log \-2 \-\-pretty=tformat:%h 4da45bef
3046 $ git log \-2 \-\-pretty=%h 4da45bef
3048 .if n \{\
3052 .SH "EXAMPLES"
3054 .RS 4
3055 .ie n \{\
3056 \h'-04'\(bu\h'+03'\c
3058 .el \{\
3059 .sp -1
3060 .IP \(bu 2.3
3062 Print the list of commits reachable from the current branch\&.
3064 .if n \{\
3065 .RS 4
3068 git rev\-list HEAD
3070 .if n \{\
3075 .RS 4
3076 .ie n \{\
3077 \h'-04'\(bu\h'+03'\c
3079 .el \{\
3080 .sp -1
3081 .IP \(bu 2.3
3083 Print the list of commits on this branch, but not present in the upstream branch\&.
3085 .if n \{\
3086 .RS 4
3089 git rev\-list @{upstream}\&.\&.HEAD
3091 .if n \{\
3096 .RS 4
3097 .ie n \{\
3098 \h'-04'\(bu\h'+03'\c
3100 .el \{\
3101 .sp -1
3102 .IP \(bu 2.3
3104 Format commits with their author and commit message (see also the porcelain
3105 \fBgit-log\fR(1))\&.
3107 .if n \{\
3108 .RS 4
3111 git rev\-list \-\-format=medium HEAD
3113 .if n \{\
3118 .RS 4
3119 .ie n \{\
3120 \h'-04'\(bu\h'+03'\c
3122 .el \{\
3123 .sp -1
3124 .IP \(bu 2.3
3126 Format commits along with their diffs (see also the porcelain
3127 \fBgit-log\fR(1), which can do this in a single process)\&.
3129 .if n \{\
3130 .RS 4
3133 git rev\-list HEAD |
3134 git diff\-tree \-\-stdin \-\-format=medium \-p
3136 .if n \{\
3141 .RS 4
3142 .ie n \{\
3143 \h'-04'\(bu\h'+03'\c
3145 .el \{\
3146 .sp -1
3147 .IP \(bu 2.3
3149 Print the list of commits on the current branch that touched any file in the
3150 \fBDocumentation\fR
3151 directory\&.
3153 .if n \{\
3154 .RS 4
3157 git rev\-list HEAD \-\- Documentation/
3159 .if n \{\
3164 .RS 4
3165 .ie n \{\
3166 \h'-04'\(bu\h'+03'\c
3168 .el \{\
3169 .sp -1
3170 .IP \(bu 2.3
3172 Print the list of commits authored by you in the past year, on any branch, tag, or other ref\&.
3174 .if n \{\
3175 .RS 4
3178 git rev\-list \-\-author=you@example\&.com \-\-since=1\&.year\&.ago \-\-all
3180 .if n \{\
3185 .RS 4
3186 .ie n \{\
3187 \h'-04'\(bu\h'+03'\c
3189 .el \{\
3190 .sp -1
3191 .IP \(bu 2.3
3193 Print the list of objects reachable from the current branch (i\&.e\&., all commits and the blobs and trees they contain)\&.
3195 .if n \{\
3196 .RS 4
3199 git rev\-list \-\-objects HEAD
3201 .if n \{\
3206 .RS 4
3207 .ie n \{\
3208 \h'-04'\(bu\h'+03'\c
3210 .el \{\
3211 .sp -1
3212 .IP \(bu 2.3
3214 Compare the disk size of all reachable objects, versus those reachable from reflogs, versus the total packed size\&. This can tell you whether running
3215 \fBgit repack \-ad\fR
3216 might reduce the repository size (by dropping unreachable objects), and whether expiring reflogs might help\&.
3218 .if n \{\
3219 .RS 4
3222 # reachable objects
3223 git rev\-list \-\-disk\-usage \-\-objects \-\-all
3224 # plus reflogs
3225 git rev\-list \-\-disk\-usage \-\-objects \-\-all \-\-reflog
3226 # total disk size used
3227 du \-c \&.git/objects/pack/*\&.pack \&.git/objects/??/*
3228 # alternative to du: add up "size" and "size\-pack" fields
3229 git count\-objects \-v
3231 .if n \{\
3236 .RS 4
3237 .ie n \{\
3238 \h'-04'\(bu\h'+03'\c
3240 .el \{\
3241 .sp -1
3242 .IP \(bu 2.3
3244 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)\&.
3246 .if n \{\
3247 .RS 4
3250 git for\-each\-ref \-\-format=\*(Aq%(refname)\*(Aq |
3251 while read branch
3253         size=$(git rev\-list \-\-disk\-usage \-\-objects HEAD\&.\&.$branch)
3254         echo "$size $branch"
3255 done |
3256 sort \-n
3258 .if n \{\
3263 .RS 4
3264 .ie n \{\
3265 \h'-04'\(bu\h'+03'\c
3267 .el \{\
3268 .sp -1
3269 .IP \(bu 2.3
3271 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
3272 \fBorigin\fR
3273 as a baseline)\&.
3275 .if n \{\
3276 .RS 4
3279 git rev\-list \-\-disk\-usage \-\-objects \-\-remotes=$suspect \-\-not \-\-remotes=origin
3281 .if n \{\
3285 .SH "GIT"
3287 Part of the \fBgit\fR(1) suite