Autogenerated manpages for v2.41.0-337-g830b4
[git-manpages.git] / man1 / git-rev-list.1
blob54a8b713507b022ff3f3b14b8fa65d45d3e96f77
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 vsnapshot <http://docbook.sf.net/>
5 .\"      Date: 2023-07-14
6 .\"    Manual: Git Manual
7 .\"    Source: Git 2.41.0.337.g830b4a04c4
8 .\"  Language: English
9 .\"
10 .TH "GIT\-REV\-LIST" "1" "2023\-07\-14" "Git 2\&.41\&.0\&.337\&.g830b4a" "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 .sp
38 .SH "DESCRIPTION"
39 .sp
40 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\&.
41 .sp
42 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\&.
43 .sp
44 Thus, the following command:
45 .sp
46 .if n \{\
47 .RS 4
48 .\}
49 .nf
50 $ git rev\-list foo bar ^baz
51 .fi
52 .if n \{\
53 .RE
54 .\}
55 .sp
56 .sp
57 means "list all the commits which are reachable from \fIfoo\fR or \fIbar\fR, but not from \fIbaz\fR"\&.
58 .sp
59 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:
60 .sp
61 .if n \{\
62 .RS 4
63 .\}
64 .nf
65 $ git rev\-list origin\&.\&.HEAD
66 $ git rev\-list HEAD ^origin
67 .fi
68 .if n \{\
69 .RE
70 .\}
71 .sp
72 .sp
73 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:
74 .sp
75 .if n \{\
76 .RS 4
77 .\}
78 .nf
79 $ git rev\-list A B \-\-not $(git merge\-base \-\-all A B)
80 $ git rev\-list A\&.\&.\&.B
81 .fi
82 .if n \{\
83 .RE
84 .\}
85 .sp
86 .sp
87 \fIrev\-list\fR is a very 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 enables it to be used by commands as different as \fIgit bisect\fR and \fIgit repack\fR\&.
88 .SH "OPTIONS"
89 .SS "Commit Limiting"
90 .sp
91 Besides specifying a range of commits that should be listed using the special notations explained in the description, additional commit limiting may be applied\&.
92 .sp
93 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\&.
94 .sp
95 Note that these are applied before commit ordering and formatting options, such as \fB\-\-reverse\fR\&.
96 .PP
97 \-<number>, \-n <number>, \-\-max\-count=<number>
98 .RS 4
99 Limit the number of commits to output\&.
102 \-\-skip=<number>
103 .RS 4
104 Skip
105 \fInumber\fR
106 commits before starting to show the commit output\&.
109 \-\-since=<date>, \-\-after=<date>
110 .RS 4
111 Show commits more recent than a specific date\&.
114 \-\-since\-as\-filter=<date>
115 .RS 4
116 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\&.
119 \-\-until=<date>, \-\-before=<date>
120 .RS 4
121 Show commits older than a specific date\&.
124 \-\-max\-age=<timestamp>, \-\-min\-age=<timestamp>
125 .RS 4
126 Limit the commits output to specified time range\&.
129 \-\-author=<pattern>, \-\-committer=<pattern>
130 .RS 4
131 Limit the commits output to ones with author/committer header lines that match the specified pattern (regular expression)\&. With more than one
132 \fB\-\-author=<pattern>\fR, commits whose author matches any of the given patterns are chosen (similarly for multiple
133 \fB\-\-committer=<pattern>\fR)\&.
136 \-\-grep\-reflog=<pattern>
137 .RS 4
138 Limit the commits output to ones with reflog entries that match the specified pattern (regular expression)\&. With more than one
139 \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
140 \fB\-\-walk\-reflogs\fR
141 is in use\&.
144 \-\-grep=<pattern>
145 .RS 4
146 Limit the commits output to ones with log message that matches the specified pattern (regular expression)\&. With more than one
147 \fB\-\-grep=<pattern>\fR, commits whose message matches any of the given patterns are chosen (but see
148 \fB\-\-all\-match\fR)\&.
151 \-\-all\-match
152 .RS 4
153 Limit the commits output to ones that match all given
154 \fB\-\-grep\fR, instead of ones that match at least one\&.
157 \-\-invert\-grep
158 .RS 4
159 Limit the commits output to ones with log message that do not match the pattern specified with
160 \fB\-\-grep=<pattern>\fR\&.
163 \-i, \-\-regexp\-ignore\-case
164 .RS 4
165 Match the regular expression limiting patterns without regard to letter case\&.
168 \-\-basic\-regexp
169 .RS 4
170 Consider the limiting patterns to be basic regular expressions; this is the default\&.
173 \-E, \-\-extended\-regexp
174 .RS 4
175 Consider the limiting patterns to be extended regular expressions instead of the default basic regular expressions\&.
178 \-F, \-\-fixed\-strings
179 .RS 4
180 Consider the limiting patterns to be fixed strings (don\(cqt interpret pattern as a regular expression)\&.
183 \-P, \-\-perl\-regexp
184 .RS 4
185 Consider the limiting patterns to be Perl\-compatible regular expressions\&.
187 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\&.
190 \-\-remove\-empty
191 .RS 4
192 Stop when a given path disappears from the tree\&.
195 \-\-merges
196 .RS 4
197 Print only merge commits\&. This is exactly the same as
198 \fB\-\-min\-parents=2\fR\&.
201 \-\-no\-merges
202 .RS 4
203 Do not print commits with more than one parent\&. This is exactly the same as
204 \fB\-\-max\-parents=1\fR\&.
207 \-\-min\-parents=<number>, \-\-max\-parents=<number>, \-\-no\-min\-parents, \-\-no\-max\-parents
208 .RS 4
209 Show only commits which have at least (or at most) that many parent commits\&. In particular,
210 \fB\-\-max\-parents=1\fR
211 is the same as
212 \fB\-\-no\-merges\fR,
213 \fB\-\-min\-parents=2\fR
214 is the same as
215 \fB\-\-merges\fR\&.
216 \fB\-\-max\-parents=0\fR
217 gives all root commits and
218 \fB\-\-min\-parents=3\fR
219 all octopus merges\&.
221 \fB\-\-no\-min\-parents\fR
223 \fB\-\-no\-max\-parents\fR
224 reset these limits (to no limit) again\&. Equivalent forms are
225 \fB\-\-min\-parents=0\fR
226 (any commit has 0 or more parents) and
227 \fB\-\-max\-parents=\-1\fR
228 (negative numbers denote no upper limit)\&.
231 \-\-first\-parent
232 .RS 4
233 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\&.
236 \-\-exclude\-first\-parent\-only
237 .RS 4
238 When finding commits to exclude (with a
239 \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\&.
242 \-\-not
243 .RS 4
244 Reverses the meaning of the
245 \fI^\fR
246 prefix (or lack thereof) for all following revision specifiers, up to the next
247 \fB\-\-not\fR\&.
250 \-\-all
251 .RS 4
252 Pretend as if all the refs in
253 \fBrefs/\fR, along with
254 \fBHEAD\fR, are listed on the command line as
255 \fI<commit>\fR\&.
258 \-\-branches[=<pattern>]
259 .RS 4
260 Pretend as if all the refs in
261 \fBrefs/heads\fR
262 are listed on the command line as
263 \fI<commit>\fR\&. If
264 \fI<pattern>\fR
265 is given, limit branches to ones matching given shell glob\&. If pattern lacks
266 \fI?\fR,
267 \fI*\fR, or
268 \fI[\fR,
269 \fI/*\fR
270 at the end is implied\&.
273 \-\-tags[=<pattern>]
274 .RS 4
275 Pretend as if all the refs in
276 \fBrefs/tags\fR
277 are listed on the command line as
278 \fI<commit>\fR\&. If
279 \fI<pattern>\fR
280 is given, limit tags to ones matching given shell glob\&. If pattern lacks
281 \fI?\fR,
282 \fI*\fR, or
283 \fI[\fR,
284 \fI/*\fR
285 at the end is implied\&.
288 \-\-remotes[=<pattern>]
289 .RS 4
290 Pretend as if all the refs in
291 \fBrefs/remotes\fR
292 are listed on the command line as
293 \fI<commit>\fR\&. If
294 \fI<pattern>\fR
295 is given, limit remote\-tracking branches to ones matching given shell glob\&. If pattern lacks
296 \fI?\fR,
297 \fI*\fR, or
298 \fI[\fR,
299 \fI/*\fR
300 at the end is implied\&.
303 \-\-glob=<glob\-pattern>
304 .RS 4
305 Pretend as if all the refs matching shell glob
306 \fI<glob\-pattern>\fR
307 are listed on the command line as
308 \fI<commit>\fR\&. Leading
309 \fIrefs/\fR, is automatically prepended if missing\&. If pattern lacks
310 \fI?\fR,
311 \fI*\fR, or
312 \fI[\fR,
313 \fI/*\fR
314 at the end is implied\&.
317 \-\-exclude=<glob\-pattern>
318 .RS 4
319 Do not include refs matching
320 \fI<glob\-pattern>\fR
321 that the next
322 \fB\-\-all\fR,
323 \fB\-\-branches\fR,
324 \fB\-\-tags\fR,
325 \fB\-\-remotes\fR, or
326 \fB\-\-glob\fR
327 would otherwise consider\&. Repetitions of this option accumulate exclusion patterns up to the next
328 \fB\-\-all\fR,
329 \fB\-\-branches\fR,
330 \fB\-\-tags\fR,
331 \fB\-\-remotes\fR, or
332 \fB\-\-glob\fR
333 option (other options or arguments do not clear accumulated patterns)\&.
335 The patterns given should not begin with
336 \fBrefs/heads\fR,
337 \fBrefs/tags\fR, or
338 \fBrefs/remotes\fR
339 when applied to
340 \fB\-\-branches\fR,
341 \fB\-\-tags\fR, or
342 \fB\-\-remotes\fR, respectively, and they must begin with
343 \fBrefs/\fR
344 when applied to
345 \fB\-\-glob\fR
347 \fB\-\-all\fR\&. If a trailing
348 \fI/*\fR
349 is intended, it must be given explicitly\&.
352 \-\-exclude\-hidden=[fetch|receive|uploadpack]
353 .RS 4
354 Do not include refs that would be hidden by
355 \fBgit\-fetch\fR,
356 \fBgit\-receive\-pack\fR
358 \fBgit\-upload\-pack\fR
359 by consulting the appropriate
360 \fBfetch\&.hideRefs\fR,
361 \fBreceive\&.hideRefs\fR
363 \fBuploadpack\&.hideRefs\fR
364 configuration along with
365 \fBtransfer\&.hideRefs\fR
366 (see
367 \fBgit-config\fR(1))\&. This option affects the next pseudo\-ref option
368 \fB\-\-all\fR
370 \fB\-\-glob\fR
371 and is cleared after processing them\&.
374 \-\-reflog
375 .RS 4
376 Pretend as if all objects mentioned by reflogs are listed on the command line as
377 \fB<commit>\fR\&.
380 \-\-alternate\-refs
381 .RS 4
382 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
383 \fBobjects/info/alternates\fR\&. The set of included objects may be modified by
384 \fBcore\&.alternateRefsCommand\fR, etc\&. See
385 \fBgit-config\fR(1)\&.
388 \-\-single\-worktree
389 .RS 4
390 By default, all working trees will be examined by the following options when there are more than one (see
391 \fBgit-worktree\fR(1)):
392 \fB\-\-all\fR,
393 \fB\-\-reflog\fR
395 \fB\-\-indexed\-objects\fR\&. This option forces them to examine the current working tree only\&.
398 \-\-ignore\-missing
399 .RS 4
400 Upon seeing an invalid object name in the input, pretend as if the bad input was not given\&.
403 \-\-stdin
404 .RS 4
405 In addition to getting arguments from the command line, read them for standard input as well\&. This accepts commits and pseudo\-options like
406 \fB\-\-all\fR
408 \fB\-\-glob=\fR\&. When a
409 \fB\-\-\fR
410 separator is seen, the following input is treated as paths and used to limit the result\&.
413 \-\-quiet
414 .RS 4
415 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
416 \fB/dev/null\fR
417 as the output does not have to be formatted\&.
420 \-\-disk\-usage, \-\-disk\-usage=human
421 .RS 4
422 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
423 \fBgit cat\-file \-\-batch\-check=\*(Aq%(objectsize:disk)\*(Aq\fR, 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 \(lqother side\(rq 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, \(lq3rd on b\(rq may be cherry\-picked from branch A)\&. With this option, such pairs of commits are excluded from the output\&.
456 \-\-left\-only, \-\-right\-only
457 .RS 4
458 List only commits on the respective side of a symmetric difference, i\&.e\&. only those which would be marked
459 \fB<\fR
460 resp\&.
461 \fB>\fR
463 \fB\-\-left\-right\fR\&.
465 For example,
466 \fB\-\-cherry\-pick \-\-right\-only A\&.\&.\&.B\fR
467 omits those commits from
468 \fBB\fR
469 which are in
470 \fBA\fR
471 or are patch\-equivalent to a commit in
472 \fBA\fR\&. In other words, this lists the
473 \fB+\fR
474 commits from
475 \fBgit cherry A B\fR\&. More precisely,
476 \fB\-\-cherry\-pick \-\-right\-only \-\-no\-merges\fR
477 gives the exact list\&.
480 \-\-cherry
481 .RS 4
482 A synonym for
483 \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
484 \fBgit log \-\-cherry upstream\&.\&.\&.mybranch\fR, similar to
485 \fBgit cherry upstream mybranch\fR\&.
488 \-g, \-\-walk\-reflogs
489 .RS 4
490 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,
491 \fI^commit\fR,
492 \fIcommit1\&.\&.commit2\fR, and
493 \fIcommit1\&.\&.\&.commit2\fR
494 notations cannot be used)\&.
496 With
497 \fB\-\-pretty\fR
498 format other than
499 \fBoneline\fR
501 \fBreference\fR
502 (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
503 \fBref@{Nth}\fR
504 (where
505 \fBNth\fR
506 is the reverse\-chronological index in the reflog) or as
507 \fBref@{timestamp}\fR
508 (with the timestamp for that entry), depending on a few rules:
510 .RS 4
511 .ie n \{\
512 \h'-04' 1.\h'+01'\c
514 .el \{\
515 .sp -1
516 .IP "  1." 4.2
518 If the starting point is specified as
519 \fBref@{Nth}\fR, show the index format\&.
522 .RS 4
523 .ie n \{\
524 \h'-04' 2.\h'+01'\c
526 .el \{\
527 .sp -1
528 .IP "  2." 4.2
530 If the starting point was specified as
531 \fBref@{now}\fR, show the timestamp format\&.
534 .RS 4
535 .ie n \{\
536 \h'-04' 3.\h'+01'\c
538 .el \{\
539 .sp -1
540 .IP "  3." 4.2
542 If neither was used, but
543 \fB\-\-date\fR
544 was given on the command line, show the timestamp in the format requested by
545 \fB\-\-date\fR\&.
548 .RS 4
549 .ie n \{\
550 \h'-04' 4.\h'+01'\c
552 .el \{\
553 .sp -1
554 .IP "  4." 4.2
556 Otherwise, show the index format\&.
559 Under
560 \fB\-\-pretty=oneline\fR, the commit message is prefixed with this information on the same line\&. This option cannot be combined with
561 \fB\-\-reverse\fR\&. See also
562 \fBgit-reflog\fR(1)\&.
564 Under
565 \fB\-\-pretty=reference\fR, this information will not be shown at all\&.
568 \-\-merge
569 .RS 4
570 After a failed merge, show refs that touch files having a conflict and don\(cqt exist on all heads to merge\&.
573 \-\-boundary
574 .RS 4
575 Output excluded boundary commits\&. Boundary commits are prefixed with
576 \fB\-\fR\&.
579 \-\-use\-bitmap\-index
580 .RS 4
581 Try to speed up the traversal using the pack bitmap index (if one is available)\&. Note that when traversing with
582 \fB\-\-objects\fR, trees and blobs will not have their associated path printed\&.
585 \-\-progress=<header>
586 .RS 4
587 Show progress reports on stderr as objects are considered\&. The
588 \fB<header>\fR
589 text will be printed with each progress update\&.
591 .SS "History Simplification"
593 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\&.
595 The following options select the commits to be shown:
597 <paths>
598 .RS 4
599 Commits modifying the given <paths> are selected\&.
602 \-\-simplify\-by\-decoration
603 .RS 4
604 Commits that are referred by some branch or tag are selected\&.
607 Note that extra commits can be shown to give a meaningful history\&.
609 The following options affect the way the simplification is performed:
611 Default mode
612 .RS 4
613 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)
616 \-\-show\-pulls
617 .RS 4
618 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\&.
621 \-\-full\-history
622 .RS 4
623 Same as the default mode, but does not prune some history\&.
626 \-\-dense
627 .RS 4
628 Only the selected commits are shown, plus some to have a meaningful history\&.
631 \-\-sparse
632 .RS 4
633 All commits in the simplified history are shown\&.
636 \-\-simplify\-merges
637 .RS 4
638 Additional option to
639 \fB\-\-full\-history\fR
640 to remove some needless merges from the resulting history, as there are no selected commits contributing to this merge\&.
643 \-\-ancestry\-path[=<commit>]
644 .RS 4
645 When given a range of commits to display (e\&.g\&.
646 \fIcommit1\&.\&.commit2\fR
648 \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
649 \fIcommit1\fR
650 (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\&.
653 A more detailed explanation follows\&.
655 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\&.)
657 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:
659 .if n \{\
660 .RS 4
663           \&.\-A\-\-\-M\-\-\-N\-\-\-O\-\-\-P\-\-\-Q
664          /     /   /   /   /   /
665         I     B   C   D   E   Y
666          \e   /   /   /   /   /
667           `\-\-\-\-\-\-\-\-\-\-\-\-\-\*(Aq   X
669 .if n \{\
674 The horizontal line of history A\-\-\-Q is taken to be the first parent of each merge\&. The commits are:
676 .RS 4
677 .ie n \{\
678 \h'-04'\(bu\h'+03'\c
680 .el \{\
681 .sp -1
682 .IP \(bu 2.3
684 \fBI\fR
685 is the initial commit, in which
686 \fBfoo\fR
687 exists with contents \(lqasdf\(rq, and a file
688 \fBquux\fR
689 exists with contents \(lqquux\(rq\&. Initial commits are compared to an empty tree, so
690 \fBI\fR
691 is !TREESAME\&.
694 .RS 4
695 .ie n \{\
696 \h'-04'\(bu\h'+03'\c
698 .el \{\
699 .sp -1
700 .IP \(bu 2.3
703 \fBA\fR,
704 \fBfoo\fR
705 contains just \(lqfoo\(rq\&.
708 .RS 4
709 .ie n \{\
710 \h'-04'\(bu\h'+03'\c
712 .el \{\
713 .sp -1
714 .IP \(bu 2.3
716 \fBB\fR
717 contains the same change as
718 \fBA\fR\&. Its merge
719 \fBM\fR
720 is trivial and hence TREESAME to all parents\&.
723 .RS 4
724 .ie n \{\
725 \h'-04'\(bu\h'+03'\c
727 .el \{\
728 .sp -1
729 .IP \(bu 2.3
731 \fBC\fR
732 does not change
733 \fBfoo\fR, but its merge
734 \fBN\fR
735 changes it to \(lqfoobar\(rq, so it is not TREESAME to any parent\&.
738 .RS 4
739 .ie n \{\
740 \h'-04'\(bu\h'+03'\c
742 .el \{\
743 .sp -1
744 .IP \(bu 2.3
746 \fBD\fR
747 sets
748 \fBfoo\fR
749 to \(lqbaz\(rq\&. Its merge
750 \fBO\fR
751 combines the strings from
752 \fBN\fR
754 \fBD\fR
755 to \(lqfoobarbaz\(rq; i\&.e\&., it is not TREESAME to any parent\&.
758 .RS 4
759 .ie n \{\
760 \h'-04'\(bu\h'+03'\c
762 .el \{\
763 .sp -1
764 .IP \(bu 2.3
766 \fBE\fR
767 changes
768 \fBquux\fR
769 to \(lqxyzzy\(rq, and its merge
770 \fBP\fR
771 combines the strings to \(lqquux xyzzy\(rq\&.
772 \fBP\fR
773 is TREESAME to
774 \fBO\fR, but not to
775 \fBE\fR\&.
778 .RS 4
779 .ie n \{\
780 \h'-04'\(bu\h'+03'\c
782 .el \{\
783 .sp -1
784 .IP \(bu 2.3
786 \fBX\fR
787 is an independent root commit that added a new file
788 \fBside\fR, and
789 \fBY\fR
790 modified it\&.
791 \fBY\fR
792 is TREESAME to
793 \fBX\fR\&. Its merge
794 \fBQ\fR
795 added
796 \fBside\fR
798 \fBP\fR, and
799 \fBQ\fR
800 is TREESAME to
801 \fBP\fR, but not to
802 \fBY\fR\&.
805 \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\&.
807 Default mode
808 .RS 4
809 Commits are included if they are not TREESAME to any parent (though this can be changed, see
810 \fB\-\-sparse\fR
811 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\&.
813 This results in:
815 .if n \{\
816 .RS 4
819           \&.\-A\-\-\-N\-\-\-O
820          /     /   /
821         I\-\-\-\-\-\-\-\-\-D
823 .if n \{\
827 Note how the rule to only follow the TREESAME parent, if one is available, removed
828 \fBB\fR
829 from consideration entirely\&.
830 \fBC\fR
831 was considered via
832 \fBN\fR, but is TREESAME\&. Root commits are compared to an empty tree, so
833 \fBI\fR
834 is !TREESAME\&.
836 Parent/child relations are only visible with
837 \fB\-\-parents\fR, but that does not affect the commits selected in default mode, so we have shown the parent lines\&.
840 \-\-full\-history without parent rewriting
841 .RS 4
842 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
844 .if n \{\
845 .RS 4
848         I  A  B  N  D  O  P  Q
850 .if n \{\
854 \fBM\fR
855 was excluded because it is TREESAME to both parents\&.
856 \fBE\fR,
857 \fBC\fR
859 \fBB\fR
860 were all walked, but only
861 \fBB\fR
862 was !TREESAME, so the others do not appear\&.
864 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\&.
867 \-\-full\-history with parent rewriting
868 .RS 4
869 Ordinary commits are only included if they are !TREESAME (though this can be changed, see
870 \fB\-\-sparse\fR
871 below)\&.
873 Merges are always included\&. However, their parent list is rewritten: Along each parent, prune away commits that are not included themselves\&. This results in
875 .if n \{\
876 .RS 4
879           \&.\-A\-\-\-M\-\-\-N\-\-\-O\-\-\-P\-\-\-Q
880          /     /   /   /   /
881         I     B   /   D   /
882          \e   /   /   /   /
883           `\-\-\-\-\-\-\-\-\-\-\-\-\-\*(Aq
885 .if n \{\
889 Compare to
890 \fB\-\-full\-history\fR
891 without rewriting above\&. Note that
892 \fBE\fR
893 was pruned away because it is TREESAME, but the parent list of P was rewritten to contain
894 \fBE\fR\*(Aqs parent
895 \fBI\fR\&. The same happened for
896 \fBC\fR
898 \fBN\fR, and
899 \fBX\fR,
900 \fBY\fR
902 \fBQ\fR\&.
905 In addition to the above settings, you can change whether TREESAME affects inclusion:
907 \-\-dense
908 .RS 4
909 Commits that are walked are included if they are not TREESAME to any parent\&.
912 \-\-sparse
913 .RS 4
914 All commits that are walked are included\&.
916 Note that without
917 \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\&.
920 \-\-simplify\-merges
921 .RS 4
922 First, build a history graph in the same way that
923 \fB\-\-full\-history\fR
924 with parent rewriting does (see above)\&.
926 Then simplify each commit
927 \fBC\fR
928 to its replacement
929 \fBC\*(Aq\fR
930 in the final history according to the following rules:
932 .RS 4
933 .ie n \{\
934 \h'-04'\(bu\h'+03'\c
936 .el \{\
937 .sp -1
938 .IP \(bu 2.3
941 \fBC\*(Aq\fR
943 \fBC\fR\&.
946 .RS 4
947 .ie n \{\
948 \h'-04'\(bu\h'+03'\c
950 .el \{\
951 .sp -1
952 .IP \(bu 2.3
954 Replace each parent
955 \fBP\fR
957 \fBC\*(Aq\fR
958 with its simplification
959 \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\&.
962 .RS 4
963 .ie n \{\
964 \h'-04'\(bu\h'+03'\c
966 .el \{\
967 .sp -1
968 .IP \(bu 2.3
970 If after this parent rewriting,
971 \fBC\*(Aq\fR
972 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\&.
975 The effect of this is best shown by way of comparing to
976 \fB\-\-full\-history\fR
977 with parent rewriting\&. The example turns into:
979 .if n \{\
980 .RS 4
983           \&.\-A\-\-\-M\-\-\-N\-\-\-O
984          /     /       /
985         I     B       D
986          \e   /       /
987           `\-\-\-\-\-\-\-\-\-\*(Aq
989 .if n \{\
993 Note the major differences in
994 \fBN\fR,
995 \fBP\fR, and
996 \fBQ\fR
997 over
998 \fB\-\-full\-history\fR:
1000 .RS 4
1001 .ie n \{\
1002 \h'-04'\(bu\h'+03'\c
1004 .el \{\
1005 .sp -1
1006 .IP \(bu 2.3
1008 \fBN\fR\*(Aqs parent list had
1009 \fBI\fR
1010 removed, because it is an ancestor of the other parent
1011 \fBM\fR\&. Still,
1012 \fBN\fR
1013 remained because it is !TREESAME\&.
1016 .RS 4
1017 .ie n \{\
1018 \h'-04'\(bu\h'+03'\c
1020 .el \{\
1021 .sp -1
1022 .IP \(bu 2.3
1024 \fBP\fR\*(Aqs parent list similarly had
1025 \fBI\fR
1026 removed\&.
1027 \fBP\fR
1028 was then removed completely, because it had one parent and is TREESAME\&.
1031 .RS 4
1032 .ie n \{\
1033 \h'-04'\(bu\h'+03'\c
1035 .el \{\
1036 .sp -1
1037 .IP \(bu 2.3
1039 \fBQ\fR\*(Aqs parent list had
1040 \fBY\fR
1041 simplified to
1042 \fBX\fR\&.
1043 \fBX\fR
1044 was then removed, because it was a TREESAME root\&.
1045 \fBQ\fR
1046 was then removed completely, because it had one parent and is TREESAME\&.
1050 There is another simplification mode available:
1052 \-\-ancestry\-path[=<commit>]
1053 .RS 4
1054 Limit the displayed commits to those which are an ancestor of <commit>, or which are a descendant of <commit>, or are <commit> itself\&.
1056 As an example use case, consider the following commit history:
1058 .if n \{\
1059 .RS 4
1062             D\-\-\-E\-\-\-\-\-\-\-F
1063            /     \e       \e
1064           B\-\-\-C\-\-\-G\-\-\-H\-\-\-I\-\-\-J
1065          /                     \e
1066         A\-\-\-\-\-\-\-K\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-L\-\-M
1068 .if n \{\
1072 A regular
1073 \fID\&.\&.M\fR
1074 computes the set of commits that are ancestors of
1075 \fBM\fR, but excludes the ones that are ancestors of
1076 \fBD\fR\&. This is useful to see what happened to the history leading to
1077 \fBM\fR
1078 since
1079 \fBD\fR, in the sense that \(lqwhat does
1080 \fBM\fR
1081 have that did not exist in
1082 \fBD\fR\(rq\&. The result in this example would be all the commits, except
1083 \fBA\fR
1085 \fBB\fR
1086 (and
1087 \fBD\fR
1088 itself, of course)\&.
1090 When we want to find out what commits in
1091 \fBM\fR
1092 are contaminated with the bug introduced by
1093 \fBD\fR
1094 and need fixing, however, we might want to view only the subset of
1095 \fID\&.\&.M\fR
1096 that are actually descendants of
1097 \fBD\fR, i\&.e\&. excluding
1098 \fBC\fR
1100 \fBK\fR\&. This is exactly what the
1101 \fB\-\-ancestry\-path\fR
1102 option does\&. Applied to the
1103 \fID\&.\&.M\fR
1104 range, it results in:
1106 .if n \{\
1107 .RS 4
1110                 E\-\-\-\-\-\-\-F
1111                  \e       \e
1112                   G\-\-\-H\-\-\-I\-\-\-J
1113                                \e
1114                                 L\-\-M
1116 .if n \{\
1120 We can also use
1121 \fB\-\-ancestry\-path=D\fR
1122 instead of
1123 \fB\-\-ancestry\-path\fR
1124 which means the same thing when applied to the
1125 \fID\&.\&.M\fR
1126 range but is just more explicit\&.
1128 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
1129 \fBD\&.\&.M\fR
1130 which contain that topic in their ancestry path\&. So, using
1131 \fB\-\-ancestry\-path=H D\&.\&.M\fR
1132 for example would result in:
1134 .if n \{\
1135 .RS 4
1138                 E
1139                  \e
1140                   G\-\-\-H\-\-\-I\-\-\-J
1141                                \e
1142                                 L\-\-M
1144 .if n \{\
1148 Whereas
1149 \fB\-\-ancestry\-path=K D\&.\&.M\fR
1150 would result in
1152 .if n \{\
1153 .RS 4
1156                 K\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-L\-\-M
1158 .if n \{\
1164 Before discussing another option, \fB\-\-show\-pulls\fR, we need to create a new example history\&.
1166 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:
1168 .if n \{\
1169 .RS 4
1172           \&.\-A\-\-\-M\-\-\-\-\-C\-\-N\-\-\-O\-\-\-P
1173          /     / \e  \e  \e/   /   /
1174         I     B   \e  R\-\*(Aq`\-Z\*(Aq   /
1175          \e   /     \e/         /
1176           \e /      /\e        /
1177            `\-\-\-X\-\-\*(Aq  `\-\-\-Y\-\-\*(Aq
1179 .if n \{\
1184 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\&.
1186 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:
1188 .if n \{\
1189 .RS 4
1192         I\-\-\-X
1194 .if n \{\
1199 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:
1201 .if n \{\
1202 .RS 4
1205           \&.\-A\-\-\-M\-\-\-\-\-\-\-\-N\-\-\-O\-\-\-P
1206          /     / \e  \e  \e/   /   /
1207         I     B   \e  R\-\*(Aq`\-\-\*(Aq   /
1208          \e   /     \e/         /
1209           \e /      /\e        /
1210            `\-\-\-X\-\-\*(Aq  `\-\-\-\-\-\-\*(Aq
1212 .if n \{\
1217 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\&.
1219 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:
1221 .if n \{\
1222 .RS 4
1225           \&.\-A\-\-\-M\-\-\&.
1226          /     /    \e
1227         I     B      R
1228          \e   /      /
1229           \e /      /
1230            `\-\-\-X\-\-\*(Aq
1232 .if n \{\
1237 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\&.
1239 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\&.
1241 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\&.
1243 \-\-show\-pulls
1244 .RS 4
1245 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\&.
1247 When a merge commit is included by
1248 \fB\-\-show\-pulls\fR, the merge is treated as if it "pulled" the change from another branch\&. When using
1249 \fB\-\-show\-pulls\fR
1250 on this example (and no other options) the resulting graph is:
1252 .if n \{\
1253 .RS 4
1256         I\-\-\-X\-\-\-R\-\-\-N
1258 .if n \{\
1262 Here, the merge commits
1263 \fBR\fR
1265 \fBN\fR
1266 are included because they pulled the commits
1267 \fBX\fR
1269 \fBR\fR
1270 into the base branch, respectively\&. These merges are the reason the commits
1271 \fBA\fR
1273 \fBB\fR
1274 do not appear in the default history\&.
1276 When
1277 \fB\-\-show\-pulls\fR
1278 is paired with
1279 \fB\-\-simplify\-merges\fR, the graph includes all of the necessary information:
1281 .if n \{\
1282 .RS 4
1285           \&.\-A\-\-\-M\-\-\&.   N
1286          /     /    \e /
1287         I     B      R
1288          \e   /      /
1289           \e /      /
1290            `\-\-\-X\-\-\*(Aq
1292 .if n \{\
1296 Notice that since
1297 \fBM\fR
1298 is reachable from
1299 \fBR\fR, the edge from
1300 \fBN\fR
1302 \fBM\fR
1303 was simplified away\&. However,
1304 \fBN\fR
1305 still appears in the history as an important commit because it "pulled" the change
1306 \fBR\fR
1307 into the main branch\&.
1310 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)\&.
1311 .SS "Bisection Helpers"
1313 \-\-bisect
1314 .RS 4
1315 Limit output to the one commit object which is roughly halfway between included and excluded commits\&. Note that the bad bisection ref
1316 \fBrefs/bisect/bad\fR
1317 is added to the included commits (if it exists) and the good bisection refs
1318 \fBrefs/bisect/good\-*\fR
1319 are added to the excluded commits (if they exist)\&. Thus, supposing there are no refs in
1320 \fBrefs/bisect/\fR, if
1322 .if n \{\
1323 .RS 4
1326         $ git rev\-list \-\-bisect foo ^bar ^baz
1328 .if n \{\
1332 outputs
1333 \fImidpoint\fR, the output of the two commands
1335 .if n \{\
1336 .RS 4
1339         $ git rev\-list foo ^midpoint
1340         $ git rev\-list midpoint ^bar ^baz
1342 .if n \{\
1346 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\&.
1349 \-\-bisect\-vars
1350 .RS 4
1351 This calculates the same as
1352 \fB\-\-bisect\fR, except that refs in
1353 \fBrefs/bisect/\fR
1354 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
1355 \fBbisect_rev\fR, and the expected number of commits to be tested after
1356 \fBbisect_rev\fR
1357 is tested to
1358 \fBbisect_nr\fR, the expected number of commits to be tested if
1359 \fBbisect_rev\fR
1360 turns out to be good to
1361 \fBbisect_good\fR, the expected number of commits to be tested if
1362 \fBbisect_rev\fR
1363 turns out to be bad to
1364 \fBbisect_bad\fR, and the number of commits we are bisecting right now to
1365 \fBbisect_all\fR\&.
1368 \-\-bisect\-all
1369 .RS 4
1370 This outputs all the commit objects between the included and excluded commits, ordered by their distance to the included and excluded commits\&. Refs in
1371 \fBrefs/bisect/\fR
1372 are not used\&. The farthest from them is displayed first\&. (This is the only one displayed by
1373 \fB\-\-bisect\fR\&.)
1375 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)\&.
1377 This option can be used along with
1378 \fB\-\-bisect\-vars\fR, in this case, after all the sorted commit objects, there will be the same text as if
1379 \fB\-\-bisect\-vars\fR
1380 had been used alone\&.
1382 .SS "Commit Ordering"
1384 By default, the commits are shown in reverse chronological order\&.
1386 \-\-date\-order
1387 .RS 4
1388 Show no parents before all of its children are shown, but otherwise show commits in the commit timestamp order\&.
1391 \-\-author\-date\-order
1392 .RS 4
1393 Show no parents before all of its children are shown, but otherwise show commits in the author timestamp order\&.
1396 \-\-topo\-order
1397 .RS 4
1398 Show no parents before all of its children are shown, and avoid showing commits on multiple lines of history intermixed\&.
1400 For example, in a commit history like this:
1402 .if n \{\
1403 .RS 4
1406     \-\-\-1\-\-\-\-2\-\-\-\-4\-\-\-\-7
1407         \e              \e
1408          3\-\-\-\-5\-\-\-\-6\-\-\-\-8\-\-\-
1410 .if n \{\
1414 where the numbers denote the order of commit timestamps,
1415 \fBgit rev\-list\fR
1416 and friends with
1417 \fB\-\-date\-order\fR
1418 show the commits in the timestamp order: 8 7 6 5 4 3 2 1\&.
1420 With
1421 \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\&.
1424 \-\-reverse
1425 .RS 4
1426 Output the commits chosen to be shown (see Commit Limiting section above) in reverse order\&. Cannot be combined with
1427 \fB\-\-walk\-reflogs\fR\&.
1429 .SS "Object Traversal"
1431 These options are mostly targeted for packing of Git repositories\&.
1433 \-\-objects
1434 .RS 4
1435 Print the object IDs of any object referenced by the listed commits\&.
1436 \fB\-\-objects foo ^bar\fR
1437 thus means \(lqsend me all object IDs which I need to download if I have the commit object
1438 \fIbar\fR
1439 but not
1440 \fIfoo\fR\(rq\&. See also
1441 \fB\-\-object\-names\fR
1442 below\&.
1445 \-\-in\-commit\-order
1446 .RS 4
1447 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\&.
1450 \-\-objects\-edge
1451 .RS 4
1452 Similar to
1453 \fB\-\-objects\fR, but also print the IDs of excluded commits prefixed with a \(lq\-\(rq character\&. This is used by
1454 \fBgit-pack-objects\fR(1)
1455 to build a \(lqthin\(rq pack, which records objects in deltified form based on objects contained in these excluded commits to reduce network traffic\&.
1458 \-\-objects\-edge\-aggressive
1459 .RS 4
1460 Similar to
1461 \fB\-\-objects\-edge\fR, but it tries harder to find excluded commits at the cost of increased time\&. This is used instead of
1462 \fB\-\-objects\-edge\fR
1463 to build \(lqthin\(rq packs for shallow repositories\&.
1466 \-\-indexed\-objects
1467 .RS 4
1468 Pretend as if all trees and blobs used by the index are listed on the command line\&. Note that you probably want to use
1469 \fB\-\-objects\fR, too\&.
1472 \-\-unpacked
1473 .RS 4
1474 Only useful with
1475 \fB\-\-objects\fR; print the object IDs that are not in packs\&.
1478 \-\-object\-names
1479 .RS 4
1480 Only useful with
1481 \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\&.
1484 \-\-no\-object\-names
1485 .RS 4
1486 Only useful with
1487 \fB\-\-objects\fR; does not print the names of the object IDs that are found\&. This inverts
1488 \fB\-\-object\-names\fR\&. This flag allows the output to be more easily parsed by commands such as
1489 \fBgit-cat-file\fR(1)\&.
1492 \-\-filter=<filter\-spec>
1493 .RS 4
1494 Only useful with one of the
1495 \fB\-\-objects*\fR; omits objects (usually blobs) from the list of printed objects\&. The
1496 \fI<filter\-spec>\fR
1497 may be one of the following:
1499 The form
1500 \fI\-\-filter=blob:none\fR
1501 omits all blobs\&.
1503 The form
1504 \fI\-\-filter=blob:limit=<n>[kmg]\fR
1505 omits blobs larger than 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,
1506 \fIblob:limit=1k\fR
1507 is the same as
1508 \fIblob:limit=1024\fR\&.
1510 The form
1511 \fI\-\-filter=object:type=(tag|commit|tree|blob)\fR
1512 omits all objects which are not of the requested type\&.
1514 The form
1515 \fI\-\-filter=sparse:oid=<blob\-ish>\fR
1516 uses a sparse\-checkout specification contained in the blob (or blob\-expression)
1517 \fI<blob\-ish>\fR
1518 to omit blobs that would not be required for a sparse checkout on the requested refs\&.
1520 The form
1521 \fI\-\-filter=tree:<depth>\fR
1522 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\&.
1524 Note that the form
1525 \fI\-\-filter=sparse:path=<path>\fR
1526 that wants to read from an arbitrary path on the filesystem has been dropped for security reasons\&.
1528 Multiple
1529 \fI\-\-filter=\fR
1530 flags can be specified to combine filters\&. Only objects which are accepted by every filter are included\&.
1532 The form
1533 \fI\-\-filter=combine:<filter1>+<filter2>+\&...<filterN>\fR
1534 can also be used to combined several filters, but this is harder than just repeating the
1535 \fI\-\-filter\fR
1536 flag and is usually not necessary\&. Filters are joined by
1537 \fI+\fR
1538 and individual filters are %\-encoded (i\&.e\&. URL\-encoded)\&. Besides the
1539 \fI+\fR
1541 \fI%\fR
1542 characters, the following characters are reserved and also must be encoded:
1543 \fB~!@#$^&*()[]{}\e;",<>?\fR\fB\*(Aq`\fR
1544 as well as all characters with ASCII code <=
1545 \fB0x20\fR, which includes space and newline\&.
1547 Other arbitrary characters can also be encoded\&. For instance,
1548 \fIcombine:tree:3+blob:none\fR
1550 \fIcombine:tree%3A3+blob%3Anone\fR
1551 are equivalent\&.
1554 \-\-no\-filter
1555 .RS 4
1556 Turn off any previous
1557 \fB\-\-filter=\fR
1558 argument\&.
1561 \-\-filter\-provided\-objects
1562 .RS 4
1563 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
1564 \fB\-\-filter=\fR\&.
1567 \-\-filter\-print\-omitted
1568 .RS 4
1569 Only useful with
1570 \fB\-\-filter=\fR; prints a list of the objects omitted by the filter\&. Object IDs are prefixed with a \(lq~\(rq character\&.
1573 \-\-missing=<missing\-action>
1574 .RS 4
1575 A debug option to help with future "partial clone" development\&. This option specifies how missing objects are handled\&.
1577 The form
1578 \fI\-\-missing=error\fR
1579 requests that rev\-list stop with an error if a missing object is encountered\&. This is the default action\&.
1581 The form
1582 \fI\-\-missing=allow\-any\fR
1583 will allow object traversal to continue if a missing object is encountered\&. Missing objects will silently be omitted from the results\&.
1585 The form
1586 \fI\-\-missing=allow\-promisor\fR
1587 is like
1588 \fIallow\-any\fR, but will only allow object traversal to continue for EXPECTED promisor missing objects\&. Unexpected missing objects will raise an error\&.
1590 The form
1591 \fI\-\-missing=print\fR
1592 is like
1593 \fIallow\-any\fR, but will also print a list of the missing objects\&. Object IDs are prefixed with a \(lq?\(rq character\&.
1596 \-\-exclude\-promisor\-objects
1597 .RS 4
1598 (For internal use only\&.) Prefilter object traversal at promisor boundary\&. This is used with partial clone\&. This is stronger than
1599 \fB\-\-missing=allow\-promisor\fR
1600 because it limits the traversal, rather than just silencing errors about missing objects\&.
1603 \-\-no\-walk[=(sorted|unsorted)]
1604 .RS 4
1605 Only show the given commits, but do not traverse their ancestors\&. This has no effect if a range is specified\&. If the argument
1606 \fBunsorted\fR
1607 is given, the commits are shown in the order they were given on the command line\&. Otherwise (if
1608 \fBsorted\fR
1609 or no argument was given), the commits are shown in reverse chronological order by commit time\&. Cannot be combined with
1610 \fB\-\-graph\fR\&.
1613 \-\-do\-walk
1614 .RS 4
1615 Overrides a previous
1616 \fB\-\-no\-walk\fR\&.
1618 .SS "Commit Formatting"
1620 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)
1622 \-\-pretty[=<format>], \-\-format=<format>
1623 .RS 4
1624 Pretty\-print the contents of the commit logs in a given format, where
1625 \fI<format>\fR
1626 can be one of
1627 \fIoneline\fR,
1628 \fIshort\fR,
1629 \fImedium\fR,
1630 \fIfull\fR,
1631 \fIfuller\fR,
1632 \fIreference\fR,
1633 \fIemail\fR,
1634 \fIraw\fR,
1635 \fIformat:<string>\fR
1637 \fItformat:<string>\fR\&. When
1638 \fI<format>\fR
1639 is none of the above, and has
1640 \fI%placeholder\fR
1641 in it, it acts as if
1642 \fI\-\-pretty=tformat:<format>\fR
1643 were given\&.
1645 See the "PRETTY FORMATS" section for some additional details for each format\&. When
1646 \fI=<format>\fR
1647 part is omitted, it defaults to
1648 \fImedium\fR\&.
1650 Note: you can specify the default pretty format in the repository configuration (see
1651 \fBgit-config\fR(1))\&.
1654 \-\-abbrev\-commit
1655 .RS 4
1656 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\&.
1658 This should make "\-\-pretty=oneline" a whole lot more readable for people using 80\-column terminals\&.
1661 \-\-no\-abbrev\-commit
1662 .RS 4
1663 Show the full 40\-byte hexadecimal commit object name\&. This negates
1664 \fB\-\-abbrev\-commit\fR, either explicit or implied by other options such as "\-\-oneline"\&. It also overrides the
1665 \fBlog\&.abbrevCommit\fR
1666 variable\&.
1669 \-\-oneline
1670 .RS 4
1671 This is a shorthand for "\-\-pretty=oneline \-\-abbrev\-commit" used together\&.
1674 \-\-encoding=<encoding>
1675 .RS 4
1676 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
1677 \fBX\fR
1678 and we are outputting in
1679 \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\&.
1682 \-\-expand\-tabs=<n>, \-\-expand\-tabs, \-\-no\-expand\-tabs
1683 .RS 4
1684 Perform a tab expansion (replace each tab with enough spaces to fill to the next display column that is multiple of
1685 \fI<n>\fR) in the log message before showing it in the output\&.
1686 \fB\-\-expand\-tabs\fR
1687 is a short\-hand for
1688 \fB\-\-expand\-tabs=8\fR, and
1689 \fB\-\-no\-expand\-tabs\fR
1690 is a short\-hand for
1691 \fB\-\-expand\-tabs=0\fR, which disables tab expansion\&.
1693 By default, tabs are expanded in pretty formats that indent the log message by 4 spaces (i\&.e\&.
1694 \fImedium\fR, which is the default,
1695 \fIfull\fR, and
1696 \fIfuller\fR)\&.
1699 \-\-show\-signature
1700 .RS 4
1701 Check the validity of a signed commit object by passing the signature to
1702 \fBgpg \-\-verify\fR
1703 and show the output\&.
1706 \-\-relative\-date
1707 .RS 4
1708 Synonym for
1709 \fB\-\-date=relative\fR\&.
1712 \-\-date=<format>
1713 .RS 4
1714 Only takes effect for dates shown in human\-readable format, such as when using
1715 \fB\-\-pretty\fR\&.
1716 \fBlog\&.date\fR
1717 config variable sets a default value for the log command\(cqs
1718 \fB\-\-date\fR
1719 option\&. By default, dates are shown in the original time zone (either committer\(cqs or author\(cqs)\&. If
1720 \fB\-local\fR
1721 is appended to the format (e\&.g\&.,
1722 \fBiso\-local\fR), the user\(cqs local time zone is used instead\&.
1724 \fB\-\-date=relative\fR
1725 shows dates relative to the current time, e\&.g\&. \(lq2 hours ago\(rq\&. The
1726 \fB\-local\fR
1727 option has no effect for
1728 \fB\-\-date=relative\fR\&.
1730 \fB\-\-date=local\fR
1731 is an alias for
1732 \fB\-\-date=default\-local\fR\&.
1734 \fB\-\-date=iso\fR
1736 \fB\-\-date=iso8601\fR) shows timestamps in a ISO 8601\-like format\&. The differences to the strict ISO 8601 format are:
1738 .RS 4
1739 .ie n \{\
1740 \h'-04'\(bu\h'+03'\c
1742 .el \{\
1743 .sp -1
1744 .IP \(bu 2.3
1746 a space instead of the
1747 \fBT\fR
1748 date/time delimiter
1751 .RS 4
1752 .ie n \{\
1753 \h'-04'\(bu\h'+03'\c
1755 .el \{\
1756 .sp -1
1757 .IP \(bu 2.3
1759 a space between time and time zone
1762 .RS 4
1763 .ie n \{\
1764 \h'-04'\(bu\h'+03'\c
1766 .el \{\
1767 .sp -1
1768 .IP \(bu 2.3
1770 no colon between hours and minutes of the time zone
1773 \fB\-\-date=iso\-strict\fR
1775 \fB\-\-date=iso8601\-strict\fR) shows timestamps in strict ISO 8601 format\&.
1777 \fB\-\-date=rfc\fR
1779 \fB\-\-date=rfc2822\fR) shows timestamps in RFC 2822 format, often found in email messages\&.
1781 \fB\-\-date=short\fR
1782 shows only the date, but not the time, in
1783 \fBYYYY\-MM\-DD\fR
1784 format\&.
1786 \fB\-\-date=raw\fR
1787 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
1788 \fB+\fR
1790 \fB\-\fR
1791 with four digits; the first two are hours, and the second two are minutes)\&. I\&.e\&., as if the timestamp were formatted with
1792 \fBstrftime("%s %z")\fR)\&. Note that the
1793 \fB\-local\fR
1794 option does not affect the seconds\-since\-epoch value (which is always measured in UTC), but does switch the accompanying timezone value\&.
1796 \fB\-\-date=human\fR
1797 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\&.
1799 \fB\-\-date=unix\fR
1800 shows the date as a Unix epoch timestamp (seconds since 1970)\&. As with
1801 \fB\-\-raw\fR, this is always in UTC and therefore
1802 \fB\-local\fR
1803 has no effect\&.
1805 \fB\-\-date=format:\&.\&.\&.\fR
1806 feeds the format
1807 \fB\&.\&.\&.\fR
1808 to your system
1809 \fBstrftime\fR, except for %s, %z, and %Z, which are handled internally\&. Use
1810 \fB\-\-date=format:%c\fR
1811 to show the date in your system locale\(cqs preferred format\&. See the
1812 \fBstrftime\fR
1813 manual for a complete list of format placeholders\&. When using
1814 \fB\-local\fR, the correct syntax is
1815 \fB\-\-date=format\-local:\&.\&.\&.\fR\&.
1817 \fB\-\-date=default\fR
1818 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\&.
1819 \fBThu Jan 1 00:00:00 1970 +0000\fR\&.
1822 \-\-header
1823 .RS 4
1824 Print the contents of the commit in raw\-format; each record is separated with a NUL character\&.
1827 \-\-no\-commit\-header
1828 .RS 4
1829 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\&.
1832 \-\-commit\-header
1833 .RS 4
1834 Overrides a previous
1835 \fB\-\-no\-commit\-header\fR\&.
1838 \-\-parents
1839 .RS 4
1840 Print also the parents of the commit (in the form "commit parent\&...")\&. Also enables parent rewriting, see
1841 \fIHistory Simplification\fR
1842 above\&.
1845 \-\-children
1846 .RS 4
1847 Print also the children of the commit (in the form "commit child\&...")\&. Also enables parent rewriting, see
1848 \fIHistory Simplification\fR
1849 above\&.
1852 \-\-timestamp
1853 .RS 4
1854 Print the raw commit timestamp\&.
1857 \-\-left\-right
1858 .RS 4
1859 Mark which side of a symmetric difference a commit is reachable from\&. Commits from the left side are prefixed with
1860 \fB<\fR
1861 and those from the right with
1862 \fB>\fR\&. If combined with
1863 \fB\-\-boundary\fR, those commits are prefixed with
1864 \fB\-\fR\&.
1866 For example, if you have this topology:
1868 .if n \{\
1869 .RS 4
1872              y\-\-\-b\-\-\-b  branch B
1873             / \e /
1874            /   \&.
1875           /   / \e
1876          o\-\-\-x\-\-\-a\-\-\-a  branch A
1878 .if n \{\
1882 you would get an output like this:
1884 .if n \{\
1885 .RS 4
1888         $ git rev\-list \-\-left\-right \-\-boundary \-\-pretty=oneline A\&.\&.\&.B
1890         >bbbbbbb\&.\&.\&. 3rd on b
1891         >bbbbbbb\&.\&.\&. 2nd on b
1892         <aaaaaaa\&.\&.\&. 3rd on a
1893         <aaaaaaa\&.\&.\&. 2nd on a
1894         \-yyyyyyy\&.\&.\&. 1st on b
1895         \-xxxxxxx\&.\&.\&. 1st on a
1897 .if n \{\
1903 \-\-graph
1904 .RS 4
1905 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
1906 \fB\-\-no\-walk\fR\&.
1908 This enables parent rewriting, see
1909 \fIHistory Simplification\fR
1910 above\&.
1912 This implies the
1913 \fB\-\-topo\-order\fR
1914 option by default, but the
1915 \fB\-\-date\-order\fR
1916 option may also be specified\&.
1919 \-\-show\-linear\-break[=<barrier>]
1920 .RS 4
1921 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
1922 \fB<barrier>\fR
1923 is specified, it is the string that will be shown instead of the default one\&.
1926 \-\-count
1927 .RS 4
1928 Print a number stating how many commits would have been listed, and suppress all other output\&. When used together with
1929 \fB\-\-left\-right\fR, instead print the counts for left and right commits, separated by a tab\&. When used together with
1930 \fB\-\-cherry\-mark\fR, omit patch equivalent commits from these counts and print the count for equivalent commits separated by a tab\&.
1932 .SH "PRETTY FORMATS"
1934 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\&.
1936 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:
1938 .RS 4
1939 .ie n \{\
1940 \h'-04'\(bu\h'+03'\c
1942 .el \{\
1943 .sp -1
1944 .IP \(bu 2.3
1946 \fIoneline\fR
1948 .if n \{\
1949 .RS 4
1952 <hash> <title\-line>
1954 .if n \{\
1958 This is designed to be as compact as possible\&.
1961 .RS 4
1962 .ie n \{\
1963 \h'-04'\(bu\h'+03'\c
1965 .el \{\
1966 .sp -1
1967 .IP \(bu 2.3
1969 \fIshort\fR
1971 .if n \{\
1972 .RS 4
1975 commit <hash>
1976 Author: <author>
1978 .if n \{\
1982 .if n \{\
1983 .RS 4
1986 <title\-line>
1988 .if n \{\
1993 .RS 4
1994 .ie n \{\
1995 \h'-04'\(bu\h'+03'\c
1997 .el \{\
1998 .sp -1
1999 .IP \(bu 2.3
2001 \fImedium\fR
2003 .if n \{\
2004 .RS 4
2007 commit <hash>
2008 Author: <author>
2009 Date:   <author\-date>
2011 .if n \{\
2015 .if n \{\
2016 .RS 4
2019 <title\-line>
2021 .if n \{\
2025 .if n \{\
2026 .RS 4
2029 <full\-commit\-message>
2031 .if n \{\
2036 .RS 4
2037 .ie n \{\
2038 \h'-04'\(bu\h'+03'\c
2040 .el \{\
2041 .sp -1
2042 .IP \(bu 2.3
2044 \fIfull\fR
2046 .if n \{\
2047 .RS 4
2050 commit <hash>
2051 Author: <author>
2052 Commit: <committer>
2054 .if n \{\
2058 .if n \{\
2059 .RS 4
2062 <title\-line>
2064 .if n \{\
2068 .if n \{\
2069 .RS 4
2072 <full\-commit\-message>
2074 .if n \{\
2079 .RS 4
2080 .ie n \{\
2081 \h'-04'\(bu\h'+03'\c
2083 .el \{\
2084 .sp -1
2085 .IP \(bu 2.3
2087 \fIfuller\fR
2089 .if n \{\
2090 .RS 4
2093 commit <hash>
2094 Author:     <author>
2095 AuthorDate: <author\-date>
2096 Commit:     <committer>
2097 CommitDate: <committer\-date>
2099 .if n \{\
2103 .if n \{\
2104 .RS 4
2107 <title\-line>
2109 .if n \{\
2113 .if n \{\
2114 .RS 4
2117 <full\-commit\-message>
2119 .if n \{\
2124 .RS 4
2125 .ie n \{\
2126 \h'-04'\(bu\h'+03'\c
2128 .el \{\
2129 .sp -1
2130 .IP \(bu 2.3
2132 \fIreference\fR
2134 .if n \{\
2135 .RS 4
2138 <abbrev\-hash> (<title\-line>, <short\-author\-date>)
2140 .if n \{\
2144 This format is used to refer to another commit in a commit message and is the same as
2145 \fB\-\-pretty=\*(Aqformat:%C(auto)%h (%s, %ad)\*(Aq\fR\&. By default, the date is formatted with
2146 \fB\-\-date=short\fR
2147 unless another
2148 \fB\-\-date\fR
2149 option is explicitly specified\&. As with any
2150 \fBformat:\fR
2151 with format placeholders, its output is not affected by other options like
2152 \fB\-\-decorate\fR
2154 \fB\-\-walk\-reflogs\fR\&.
2157 .RS 4
2158 .ie n \{\
2159 \h'-04'\(bu\h'+03'\c
2161 .el \{\
2162 .sp -1
2163 .IP \(bu 2.3
2165 \fIemail\fR
2167 .if n \{\
2168 .RS 4
2171 From <hash> <date>
2172 From: <author>
2173 Date: <author\-date>
2174 Subject: [PATCH] <title\-line>
2176 .if n \{\
2180 .if n \{\
2181 .RS 4
2184 <full\-commit\-message>
2186 .if n \{\
2191 .RS 4
2192 .ie n \{\
2193 \h'-04'\(bu\h'+03'\c
2195 .el \{\
2196 .sp -1
2197 .IP \(bu 2.3
2199 \fImboxrd\fR
2201 Like
2202 \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\&.
2205 .RS 4
2206 .ie n \{\
2207 \h'-04'\(bu\h'+03'\c
2209 .el \{\
2210 .sp -1
2211 .IP \(bu 2.3
2213 \fIraw\fR
2216 \fIraw\fR
2217 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
2218 \fIparents\fR
2219 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
2220 \fBgit log \-\-raw\fR\&. To get full object names in a raw diff format, use
2221 \fB\-\-no\-abbrev\fR\&.
2224 .RS 4
2225 .ie n \{\
2226 \h'-04'\(bu\h'+03'\c
2228 .el \{\
2229 .sp -1
2230 .IP \(bu 2.3
2232 \fIformat:<format\-string>\fR
2235 \fIformat:<format\-string>\fR
2236 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
2237 \fI%n\fR
2238 instead of
2239 \fI\en\fR\&.
2241 E\&.g,
2242 \fIformat:"The author of %h was %an, %ar%nThe title was >>%s<<%n"\fR
2243 would show something like this:
2245 .if n \{\
2246 .RS 4
2249 The author of fe6e0ee was Junio C Hamano, 23 hours ago
2250 The title was >>t4119: test autocomputing \-p<n> for traditional diff input\&.<<
2252 .if n \{\
2256 The placeholders are:
2258 .RS 4
2259 .ie n \{\
2260 \h'-04'\(bu\h'+03'\c
2262 .el \{\
2263 .sp -1
2264 .IP \(bu 2.3
2266 Placeholders that expand to a single literal character:
2268 \fI%n\fR
2269 .RS 4
2270 newline
2273 \fI%%\fR
2274 .RS 4
2275 a raw
2276 \fI%\fR
2279 \fI%x00\fR
2280 .RS 4
2281 print a byte from a hex code
2285 .RS 4
2286 .ie n \{\
2287 \h'-04'\(bu\h'+03'\c
2289 .el \{\
2290 .sp -1
2291 .IP \(bu 2.3
2293 Placeholders that affect formatting of later placeholders:
2295 \fI%Cred\fR
2296 .RS 4
2297 switch color to red
2300 \fI%Cgreen\fR
2301 .RS 4
2302 switch color to green
2305 \fI%Cblue\fR
2306 .RS 4
2307 switch color to blue
2310 \fI%Creset\fR
2311 .RS 4
2312 reset color
2315 \fI%C(\&...)\fR
2316 .RS 4
2317 color specification, as described under Values in the "CONFIGURATION FILE" section of
2318 \fBgit-config\fR(1)\&. By default, colors are shown only when enabled for log output (by
2319 \fBcolor\&.diff\fR,
2320 \fBcolor\&.ui\fR, or
2321 \fB\-\-color\fR, and respecting the
2322 \fBauto\fR
2323 settings of the former if we are going to a terminal)\&.
2324 \fB%C(auto,\&.\&.\&.)\fR
2325 is accepted as a historical synonym for the default (e\&.g\&.,
2326 \fB%C(auto,red)\fR)\&. Specifying
2327 \fB%C(always,\&.\&.\&.)\fR
2328 will show the colors even when color is not otherwise enabled (though consider just using
2329 \fB\-\-color=always\fR
2330 to enable color for the whole output, including this format and anything else git might color)\&.
2331 \fBauto\fR
2332 alone (i\&.e\&.
2333 \fB%C(auto)\fR) will turn on auto coloring on the next placeholders until the color is switched again\&.
2336 \fI%m\fR
2337 .RS 4
2338 left (\fB<\fR), right (\fB>\fR) or boundary (\fB\-\fR) mark
2341 \fI%w([<w>[,<i1>[,<i2>]]])\fR
2342 .RS 4
2343 switch line wrapping, like the \-w option of
2344 \fBgit-shortlog\fR(1)\&.
2347 \fI%<( <N> [,trunc|ltrunc|mtrunc])\fR
2348 .RS 4
2349 make the next placeholder take at least N column widths, padding spaces on the right if necessary\&. Optionally truncate (with ellipsis
2350 \fI\&.\&.\fR) at the left (ltrunc)
2351 \fB\&.\&.ft\fR, the middle (mtrunc)
2352 \fBmi\&.\&.le\fR, or the end (trunc)
2353 \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\&.
2356 \fI%<|( <M> )\fR
2357 .RS 4
2358 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\&.
2361 \fI%>( <N> )\fR, \fI%>|( <M> )\fR
2362 .RS 4
2363 similar to
2364 \fI%<( <N> )\fR,
2365 \fI%<|( <M> )\fR
2366 respectively, but padding spaces on the left
2369 \fI%>>( <N> )\fR, \fI%>>|( <M> )\fR
2370 .RS 4
2371 similar to
2372 \fI%>( <N> )\fR,
2373 \fI%>|( <M> )\fR
2374 respectively, except that if the next placeholder takes more spaces than given and there are spaces on its left, use those spaces
2377 \fI%><( <N> )\fR, \fI%><|( <M> )\fR
2378 .RS 4
2379 similar to
2380 \fI%<( <N> )\fR,
2381 \fI%<|( <M> )\fR
2382 respectively, but padding both sides (i\&.e\&. the text is centered)
2386 .RS 4
2387 .ie n \{\
2388 \h'-04'\(bu\h'+03'\c
2390 .el \{\
2391 .sp -1
2392 .IP \(bu 2.3
2394 Placeholders that expand to information extracted from the commit:
2396 \fI%H\fR
2397 .RS 4
2398 commit hash
2401 \fI%h\fR
2402 .RS 4
2403 abbreviated commit hash
2406 \fI%T\fR
2407 .RS 4
2408 tree hash
2411 \fI%t\fR
2412 .RS 4
2413 abbreviated tree hash
2416 \fI%P\fR
2417 .RS 4
2418 parent hashes
2421 \fI%p\fR
2422 .RS 4
2423 abbreviated parent hashes
2426 \fI%an\fR
2427 .RS 4
2428 author name
2431 \fI%aN\fR
2432 .RS 4
2433 author name (respecting \&.mailmap, see
2434 \fBgit-shortlog\fR(1)
2436 \fBgit-blame\fR(1))
2439 \fI%ae\fR
2440 .RS 4
2441 author email
2444 \fI%aE\fR
2445 .RS 4
2446 author email (respecting \&.mailmap, see
2447 \fBgit-shortlog\fR(1)
2449 \fBgit-blame\fR(1))
2452 \fI%al\fR
2453 .RS 4
2454 author email local\-part (the part before the
2455 \fI@\fR
2456 sign)
2459 \fI%aL\fR
2460 .RS 4
2461 author local\-part (see
2462 \fI%al\fR) respecting \&.mailmap, see
2463 \fBgit-shortlog\fR(1)
2465 \fBgit-blame\fR(1))
2468 \fI%ad\fR
2469 .RS 4
2470 author date (format respects \-\-date= option)
2473 \fI%aD\fR
2474 .RS 4
2475 author date, RFC2822 style
2478 \fI%ar\fR
2479 .RS 4
2480 author date, relative
2483 \fI%at\fR
2484 .RS 4
2485 author date, UNIX timestamp
2488 \fI%ai\fR
2489 .RS 4
2490 author date, ISO 8601\-like format
2493 \fI%aI\fR
2494 .RS 4
2495 author date, strict ISO 8601 format
2498 \fI%as\fR
2499 .RS 4
2500 author date, short format (\fBYYYY\-MM\-DD\fR)
2503 \fI%ah\fR
2504 .RS 4
2505 author date, human style (like the
2506 \fB\-\-date=human\fR
2507 option of
2508 \fBgit-rev-list\fR(1))
2511 \fI%cn\fR
2512 .RS 4
2513 committer name
2516 \fI%cN\fR
2517 .RS 4
2518 committer name (respecting \&.mailmap, see
2519 \fBgit-shortlog\fR(1)
2521 \fBgit-blame\fR(1))
2524 \fI%ce\fR
2525 .RS 4
2526 committer email
2529 \fI%cE\fR
2530 .RS 4
2531 committer email (respecting \&.mailmap, see
2532 \fBgit-shortlog\fR(1)
2534 \fBgit-blame\fR(1))
2537 \fI%cl\fR
2538 .RS 4
2539 committer email local\-part (the part before the
2540 \fI@\fR
2541 sign)
2544 \fI%cL\fR
2545 .RS 4
2546 committer local\-part (see
2547 \fI%cl\fR) respecting \&.mailmap, see
2548 \fBgit-shortlog\fR(1)
2550 \fBgit-blame\fR(1))
2553 \fI%cd\fR
2554 .RS 4
2555 committer date (format respects \-\-date= option)
2558 \fI%cD\fR
2559 .RS 4
2560 committer date, RFC2822 style
2563 \fI%cr\fR
2564 .RS 4
2565 committer date, relative
2568 \fI%ct\fR
2569 .RS 4
2570 committer date, UNIX timestamp
2573 \fI%ci\fR
2574 .RS 4
2575 committer date, ISO 8601\-like format
2578 \fI%cI\fR
2579 .RS 4
2580 committer date, strict ISO 8601 format
2583 \fI%cs\fR
2584 .RS 4
2585 committer date, short format (\fBYYYY\-MM\-DD\fR)
2588 \fI%ch\fR
2589 .RS 4
2590 committer date, human style (like the
2591 \fB\-\-date=human\fR
2592 option of
2593 \fBgit-rev-list\fR(1))
2596 \fI%d\fR
2597 .RS 4
2598 ref names, like the \-\-decorate option of
2599 \fBgit-log\fR(1)
2602 \fI%D\fR
2603 .RS 4
2604 ref names without the " (", ")" wrapping\&.
2607 \fI%(describe[:options])\fR
2608 .RS 4
2609 human\-readable name, like
2610 \fBgit-describe\fR(1); empty string for undescribable commits\&. The
2611 \fBdescribe\fR
2612 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\&.
2614 .RS 4
2615 .ie n \{\
2616 \h'-04'\(bu\h'+03'\c
2618 .el \{\
2619 .sp -1
2620 .IP \(bu 2.3
2622 \fItags[=<bool\-value>]\fR: Instead of only considering annotated tags, consider lightweight tags as well\&.
2625 .RS 4
2626 .ie n \{\
2627 \h'-04'\(bu\h'+03'\c
2629 .el \{\
2630 .sp -1
2631 .IP \(bu 2.3
2633 \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\&.
2636 .RS 4
2637 .ie n \{\
2638 \h'-04'\(bu\h'+03'\c
2640 .el \{\
2641 .sp -1
2642 .IP \(bu 2.3
2644 \fImatch=<pattern>\fR: Only consider tags matching the given
2645 \fBglob(7)\fR
2646 pattern, excluding the "refs/tags/" prefix\&.
2649 .RS 4
2650 .ie n \{\
2651 \h'-04'\(bu\h'+03'\c
2653 .el \{\
2654 .sp -1
2655 .IP \(bu 2.3
2657 \fIexclude=<pattern>\fR: Do not consider tags matching the given
2658 \fBglob(7)\fR
2659 pattern, excluding the "refs/tags/" prefix\&.
2663 \fI%S\fR
2664 .RS 4
2665 ref name given on the command line by which the commit was reached (like
2666 \fBgit log \-\-source\fR), only works with
2667 \fBgit log\fR
2670 \fI%e\fR
2671 .RS 4
2672 encoding
2675 \fI%s\fR
2676 .RS 4
2677 subject
2680 \fI%f\fR
2681 .RS 4
2682 sanitized subject line, suitable for a filename
2685 \fI%b\fR
2686 .RS 4
2687 body
2690 \fI%B\fR
2691 .RS 4
2692 raw body (unwrapped subject and body)
2695 \fI%GG\fR
2696 .RS 4
2697 raw verification message from GPG for a signed commit
2700 \fI%G?\fR
2701 .RS 4
2702 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
2705 \fI%GS\fR
2706 .RS 4
2707 show the name of the signer for a signed commit
2710 \fI%GK\fR
2711 .RS 4
2712 show the key used to sign a signed commit
2715 \fI%GF\fR
2716 .RS 4
2717 show the fingerprint of the key used to sign a signed commit
2720 \fI%GP\fR
2721 .RS 4
2722 show the fingerprint of the primary key whose subkey was used to sign a signed commit
2725 \fI%GT\fR
2726 .RS 4
2727 show the trust level for the key used to sign a signed commit
2730 \fI%gD\fR
2731 .RS 4
2732 reflog selector, e\&.g\&.,
2733 \fBrefs/stash@{1}\fR
2735 \fBrefs/stash@{2 minutes ago}\fR; the format follows the rules described for the
2736 \fB\-g\fR
2737 option\&. The portion before the
2738 \fB@\fR
2739 is the refname as given on the command line (so
2740 \fBgit log \-g refs/heads/master\fR
2741 would yield
2742 \fBrefs/heads/master@{0}\fR)\&.
2745 \fI%gd\fR
2746 .RS 4
2747 shortened reflog selector; same as
2748 \fB%gD\fR, but the refname portion is shortened for human readability (so
2749 \fBrefs/heads/master\fR
2750 becomes just
2751 \fBmaster\fR)\&.
2754 \fI%gn\fR
2755 .RS 4
2756 reflog identity name
2759 \fI%gN\fR
2760 .RS 4
2761 reflog identity name (respecting \&.mailmap, see
2762 \fBgit-shortlog\fR(1)
2764 \fBgit-blame\fR(1))
2767 \fI%ge\fR
2768 .RS 4
2769 reflog identity email
2772 \fI%gE\fR
2773 .RS 4
2774 reflog identity email (respecting \&.mailmap, see
2775 \fBgit-shortlog\fR(1)
2777 \fBgit-blame\fR(1))
2780 \fI%gs\fR
2781 .RS 4
2782 reflog subject
2785 \fI%(trailers[:options])\fR
2786 .RS 4
2787 display the trailers of the body as interpreted by
2788 \fBgit-interpret-trailers\fR(1)\&. The
2789 \fBtrailers\fR
2790 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\&.
2792 .RS 4
2793 .ie n \{\
2794 \h'-04'\(bu\h'+03'\c
2796 .el \{\
2797 .sp -1
2798 .IP \(bu 2.3
2800 \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
2801 \fBonly\fR
2802 option so that non\-trailer lines in the trailer block are hidden\&. If that is not desired it can be disabled with
2803 \fBonly=false\fR\&. E\&.g\&.,
2804 \fB%(trailers:key=Reviewed\-by)\fR
2805 shows trailer lines with key
2806 \fBReviewed\-by\fR\&.
2809 .RS 4
2810 .ie n \{\
2811 \h'-04'\(bu\h'+03'\c
2813 .el \{\
2814 .sp -1
2815 .IP \(bu 2.3
2817 \fIonly[=<bool>]\fR: select whether non\-trailer lines from the trailer block should be included\&.
2820 .RS 4
2821 .ie n \{\
2822 \h'-04'\(bu\h'+03'\c
2824 .el \{\
2825 .sp -1
2826 .IP \(bu 2.3
2828 \fIseparator=<sep>\fR: specify a separator inserted between trailer lines\&. When this option is not given each trailer line is terminated with a line feed character\&. The string <sep> may contain the literal formatting codes described above\&. To use comma as separator one must use
2829 \fB%x2C\fR
2830 as it would otherwise be parsed as next option\&. E\&.g\&.,
2831 \fB%(trailers:key=Ticket,separator=%x2C )\fR
2832 shows all trailer lines whose key is "Ticket" separated by a comma and a space\&.
2835 .RS 4
2836 .ie n \{\
2837 \h'-04'\(bu\h'+03'\c
2839 .el \{\
2840 .sp -1
2841 .IP \(bu 2.3
2843 \fIunfold[=<bool>]\fR: make it behave as if interpret\-trailer\(cqs
2844 \fB\-\-unfold\fR
2845 option was given\&. E\&.g\&.,
2846 \fB%(trailers:only,unfold=true)\fR
2847 unfolds and shows all trailer lines\&.
2850 .RS 4
2851 .ie n \{\
2852 \h'-04'\(bu\h'+03'\c
2854 .el \{\
2855 .sp -1
2856 .IP \(bu 2.3
2858 \fIkeyonly[=<bool>]\fR: only show the key part of the trailer\&.
2861 .RS 4
2862 .ie n \{\
2863 \h'-04'\(bu\h'+03'\c
2865 .el \{\
2866 .sp -1
2867 .IP \(bu 2.3
2869 \fIvalueonly[=<bool>]\fR: only show the value part of the trailer\&.
2872 .RS 4
2873 .ie n \{\
2874 \h'-04'\(bu\h'+03'\c
2876 .el \{\
2877 .sp -1
2878 .IP \(bu 2.3
2880 \fIkey_value_separator=<sep>\fR: specify a separator inserted between trailer lines\&. When this option is not given each trailer key\-value pair is separated by ": "\&. Otherwise it shares the same semantics as
2881 \fIseparator=<sep>\fR
2882 above\&.
2887 .if n \{\
2890 .RS 4
2891 .it 1 an-trap
2892 .nr an-no-space-flag 1
2893 .nr an-break-flag 1
2895 .ps +1
2896 \fBNote\fR
2897 .ps -1
2900 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\&.
2901 .sp .5v
2904 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\&.
2906 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\&.
2908 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\&.
2910 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\&.
2912 .RS 4
2913 .ie n \{\
2914 \h'-04'\(bu\h'+03'\c
2916 .el \{\
2917 .sp -1
2918 .IP \(bu 2.3
2920 \fItformat:\fR
2923 \fItformat:\fR
2924 format works exactly like
2925 \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:
2927 .if n \{\
2928 .RS 4
2931 $ git log \-2 \-\-pretty=format:%h 4da45bef \e
2932   | perl \-pe \*(Aq$_ \&.= " \-\- NO NEWLINE\en" unless /\en/\*(Aq
2933 4da45be
2934 7134973 \-\- NO NEWLINE
2936 $ git log \-2 \-\-pretty=tformat:%h 4da45bef \e
2937   | perl \-pe \*(Aq$_ \&.= " \-\- NO NEWLINE\en" unless /\en/\*(Aq
2938 4da45be
2939 7134973
2941 .if n \{\
2945 In addition, any unrecognized string that has a
2946 \fB%\fR
2947 in it is interpreted as if it has
2948 \fBtformat:\fR
2949 in front of it\&. For example, these two are equivalent:
2951 .if n \{\
2952 .RS 4
2955 $ git log \-2 \-\-pretty=tformat:%h 4da45bef
2956 $ git log \-2 \-\-pretty=%h 4da45bef
2958 .if n \{\
2963 .SH "EXAMPLES"
2965 .RS 4
2966 .ie n \{\
2967 \h'-04'\(bu\h'+03'\c
2969 .el \{\
2970 .sp -1
2971 .IP \(bu 2.3
2973 Print the list of commits reachable from the current branch\&.
2975 .if n \{\
2976 .RS 4
2979 git rev\-list HEAD
2981 .if n \{\
2987 .RS 4
2988 .ie n \{\
2989 \h'-04'\(bu\h'+03'\c
2991 .el \{\
2992 .sp -1
2993 .IP \(bu 2.3
2995 Print the list of commits on this branch, but not present in the upstream branch\&.
2997 .if n \{\
2998 .RS 4
3001 git rev\-list @{upstream}\&.\&.HEAD
3003 .if n \{\
3009 .RS 4
3010 .ie n \{\
3011 \h'-04'\(bu\h'+03'\c
3013 .el \{\
3014 .sp -1
3015 .IP \(bu 2.3
3017 Format commits with their author and commit message (see also the porcelain
3018 \fBgit-log\fR(1))\&.
3020 .if n \{\
3021 .RS 4
3024 git rev\-list \-\-format=medium HEAD
3026 .if n \{\
3032 .RS 4
3033 .ie n \{\
3034 \h'-04'\(bu\h'+03'\c
3036 .el \{\
3037 .sp -1
3038 .IP \(bu 2.3
3040 Format commits along with their diffs (see also the porcelain
3041 \fBgit-log\fR(1), which can do this in a single process)\&.
3043 .if n \{\
3044 .RS 4
3047 git rev\-list HEAD |
3048 git diff\-tree \-\-stdin \-\-format=medium \-p
3050 .if n \{\
3056 .RS 4
3057 .ie n \{\
3058 \h'-04'\(bu\h'+03'\c
3060 .el \{\
3061 .sp -1
3062 .IP \(bu 2.3
3064 Print the list of commits on the current branch that touched any file in the
3065 \fBDocumentation\fR
3066 directory\&.
3068 .if n \{\
3069 .RS 4
3072 git rev\-list HEAD \-\- Documentation/
3074 .if n \{\
3080 .RS 4
3081 .ie n \{\
3082 \h'-04'\(bu\h'+03'\c
3084 .el \{\
3085 .sp -1
3086 .IP \(bu 2.3
3088 Print the list of commits authored by you in the past year, on any branch, tag, or other ref\&.
3090 .if n \{\
3091 .RS 4
3094 git rev\-list \-\-author=you@example\&.com \-\-since=1\&.year\&.ago \-\-all
3096 .if n \{\
3102 .RS 4
3103 .ie n \{\
3104 \h'-04'\(bu\h'+03'\c
3106 .el \{\
3107 .sp -1
3108 .IP \(bu 2.3
3110 Print the list of objects reachable from the current branch (i\&.e\&., all commits and the blobs and trees they contain)\&.
3112 .if n \{\
3113 .RS 4
3116 git rev\-list \-\-objects HEAD
3118 .if n \{\
3124 .RS 4
3125 .ie n \{\
3126 \h'-04'\(bu\h'+03'\c
3128 .el \{\
3129 .sp -1
3130 .IP \(bu 2.3
3132 Compare the disk size of all reachable objects, versus those reachable from reflogs, versus the total packed size\&. This can tell you whether running
3133 \fBgit repack \-ad\fR
3134 might reduce the repository size (by dropping unreachable objects), and whether expiring reflogs might help\&.
3136 .if n \{\
3137 .RS 4
3140 # reachable objects
3141 git rev\-list \-\-disk\-usage \-\-objects \-\-all
3142 # plus reflogs
3143 git rev\-list \-\-disk\-usage \-\-objects \-\-all \-\-reflog
3144 # total disk size used
3145 du \-c \&.git/objects/pack/*\&.pack \&.git/objects/??/*
3146 # alternative to du: add up "size" and "size\-pack" fields
3147 git count\-objects \-v
3149 .if n \{\
3155 .RS 4
3156 .ie n \{\
3157 \h'-04'\(bu\h'+03'\c
3159 .el \{\
3160 .sp -1
3161 .IP \(bu 2.3
3163 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)\&.
3165 .if n \{\
3166 .RS 4
3169 git for\-each\-ref \-\-format=\*(Aq%(refname)\*(Aq |
3170 while read branch
3172         size=$(git rev\-list \-\-disk\-usage \-\-objects HEAD\&.\&.$branch)
3173         echo "$size $branch"
3174 done |
3175 sort \-n
3177 .if n \{\
3183 .RS 4
3184 .ie n \{\
3185 \h'-04'\(bu\h'+03'\c
3187 .el \{\
3188 .sp -1
3189 .IP \(bu 2.3
3191 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
3192 \fBorigin\fR
3193 as a baseline)\&.
3195 .if n \{\
3196 .RS 4
3199 git rev\-list \-\-disk\-usage \-\-objects \-\-remotes=$suspect \-\-not \-\-remotes=origin
3201 .if n \{\
3206 .SH "GIT"
3208 Part of the \fBgit\fR(1) suite