Autogenerated manpages for v2.46.0-rc0-75-g04f5a5
[git-manpages.git] / man1 / git-rev-list.1
blobe55e475edb9a30fea3e77fe6c857fe11170fa8b9
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: 2024-07-16
6 .\"    Manual: Git Manual
7 .\"    Source: Git 2.46.0.rc0.75.g04f5a52757
8 .\"  Language: English
9 .\"
10 .TH "GIT\-REV\-LIST" "1" "2024\-07\-16" "Git 2\&.46\&.0\&.rc0\&.75\&.g0" "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 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\&.
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 a 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 a 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\&. 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\&.
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 from 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\&. Flags like
411 \fB\-\-not\fR
412 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\&.
415 \-\-quiet
416 .RS 4
417 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
418 \fB/dev/null\fR
419 as the output does not have to be formatted\&.
422 \-\-disk\-usage, \-\-disk\-usage=human
423 .RS 4
424 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
425 \fBgit cat\-file \-\-batch\-check=\*(Aq%(objectsize:disk)\*(Aq\fR, except that it runs much faster (especially with
426 \fB\-\-use\-bitmap\-index\fR)\&. See the
427 \fBCAVEATS\fR
428 section in
429 \fBgit-cat-file\fR(1)
430 for the limitations of what "on\-disk storage" means\&. With the optional value
431 \fBhuman\fR, on\-disk storage size is shown in human\-readable string(e\&.g\&. 12\&.24 Kib, 3\&.50 Mib)\&.
434 \-\-cherry\-mark
435 .RS 4
436 Like
437 \fB\-\-cherry\-pick\fR
438 (see below) but mark equivalent commits with
439 \fB=\fR
440 rather than omitting them, and inequivalent ones with
441 \fB+\fR\&.
444 \-\-cherry\-pick
445 .RS 4
446 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\&.
448 For example, if you have two branches,
449 \fBA\fR
451 \fBB\fR, a usual way to list all commits on only one side of them is with
452 \fB\-\-left\-right\fR
453 (see the example below in the description of the
454 \fB\-\-left\-right\fR
455 option)\&. However, it shows the commits that were cherry\-picked from the other branch (for example, \(lq3rd on b\(rq 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 \{\
686 The horizontal line of history A\-\-\-Q is taken to be the first parent of each merge\&. The commits are:
688 .RS 4
689 .ie n \{\
690 \h'-04'\(bu\h'+03'\c
692 .el \{\
693 .sp -1
694 .IP \(bu 2.3
696 \fBI\fR
697 is the initial commit, in which
698 \fBfoo\fR
699 exists with contents \(lqasdf\(rq, and a file
700 \fBquux\fR
701 exists with contents \(lqquux\(rq\&. Initial commits are compared to an empty tree, so
702 \fBI\fR
703 is !TREESAME\&.
706 .RS 4
707 .ie n \{\
708 \h'-04'\(bu\h'+03'\c
710 .el \{\
711 .sp -1
712 .IP \(bu 2.3
715 \fBA\fR,
716 \fBfoo\fR
717 contains just \(lqfoo\(rq\&.
720 .RS 4
721 .ie n \{\
722 \h'-04'\(bu\h'+03'\c
724 .el \{\
725 .sp -1
726 .IP \(bu 2.3
728 \fBB\fR
729 contains the same change as
730 \fBA\fR\&. Its merge
731 \fBM\fR
732 is trivial and hence TREESAME to all parents\&.
735 .RS 4
736 .ie n \{\
737 \h'-04'\(bu\h'+03'\c
739 .el \{\
740 .sp -1
741 .IP \(bu 2.3
743 \fBC\fR
744 does not change
745 \fBfoo\fR, but its merge
746 \fBN\fR
747 changes it to \(lqfoobar\(rq, so it is not TREESAME to any parent\&.
750 .RS 4
751 .ie n \{\
752 \h'-04'\(bu\h'+03'\c
754 .el \{\
755 .sp -1
756 .IP \(bu 2.3
758 \fBD\fR
759 sets
760 \fBfoo\fR
761 to \(lqbaz\(rq\&. Its merge
762 \fBO\fR
763 combines the strings from
764 \fBN\fR
766 \fBD\fR
767 to \(lqfoobarbaz\(rq; i\&.e\&., it is not TREESAME to any parent\&.
770 .RS 4
771 .ie n \{\
772 \h'-04'\(bu\h'+03'\c
774 .el \{\
775 .sp -1
776 .IP \(bu 2.3
778 \fBE\fR
779 changes
780 \fBquux\fR
781 to \(lqxyzzy\(rq, and its merge
782 \fBP\fR
783 combines the strings to \(lqquux xyzzy\(rq\&.
784 \fBP\fR
785 is TREESAME to
786 \fBO\fR, but not to
787 \fBE\fR\&.
790 .RS 4
791 .ie n \{\
792 \h'-04'\(bu\h'+03'\c
794 .el \{\
795 .sp -1
796 .IP \(bu 2.3
798 \fBX\fR
799 is an independent root commit that added a new file
800 \fBside\fR, and
801 \fBY\fR
802 modified it\&.
803 \fBY\fR
804 is TREESAME to
805 \fBX\fR\&. Its merge
806 \fBQ\fR
807 added
808 \fBside\fR
810 \fBP\fR, and
811 \fBQ\fR
812 is TREESAME to
813 \fBP\fR, but not to
814 \fBY\fR\&.
817 \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\&.
819 Default mode
820 .RS 4
821 Commits are included if they are not TREESAME to any parent (though this can be changed, see
822 \fB\-\-sparse\fR
823 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\&.
825 This results in:
827 .if n \{\
828 .RS 4
831           \&.\-A\-\-\-N\-\-\-O
832          /     /   /
833         I\-\-\-\-\-\-\-\-\-D
835 .if n \{\
839 Note how the rule to only follow the TREESAME parent, if one is available, removed
840 \fBB\fR
841 from consideration entirely\&.
842 \fBC\fR
843 was considered via
844 \fBN\fR, but is TREESAME\&. Root commits are compared to an empty tree, so
845 \fBI\fR
846 is !TREESAME\&.
848 Parent/child relations are only visible with
849 \fB\-\-parents\fR, but that does not affect the commits selected in default mode, so we have shown the parent lines\&.
852 \-\-full\-history without parent rewriting
853 .RS 4
854 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
856 .if n \{\
857 .RS 4
860         I  A  B  N  D  O  P  Q
862 .if n \{\
866 \fBM\fR
867 was excluded because it is TREESAME to both parents\&.
868 \fBE\fR,
869 \fBC\fR
871 \fBB\fR
872 were all walked, but only
873 \fBB\fR
874 was !TREESAME, so the others do not appear\&.
876 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\&.
879 \-\-full\-history with parent rewriting
880 .RS 4
881 Ordinary commits are only included if they are !TREESAME (though this can be changed, see
882 \fB\-\-sparse\fR
883 below)\&.
885 Merges are always included\&. However, their parent list is rewritten: Along each parent, prune away commits that are not included themselves\&. This results in
887 .if n \{\
888 .RS 4
891           \&.\-A\-\-\-M\-\-\-N\-\-\-O\-\-\-P\-\-\-Q
892          /     /   /   /   /
893         I     B   /   D   /
894          \e   /   /   /   /
895           `\-\-\-\-\-\-\-\-\-\-\-\-\-\*(Aq
897 .if n \{\
901 Compare to
902 \fB\-\-full\-history\fR
903 without rewriting above\&. Note that
904 \fBE\fR
905 was pruned away because it is TREESAME, but the parent list of P was rewritten to contain
906 \fBE\fR\*(Aqs parent
907 \fBI\fR\&. The same happened for
908 \fBC\fR
910 \fBN\fR, and
911 \fBX\fR,
912 \fBY\fR
914 \fBQ\fR\&.
917 In addition to the above settings, you can change whether TREESAME affects inclusion:
919 \-\-dense
920 .RS 4
921 Commits that are walked are included if they are not TREESAME to any parent\&.
924 \-\-sparse
925 .RS 4
926 All commits that are walked are included\&.
928 Note that without
929 \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\&.
932 \-\-simplify\-merges
933 .RS 4
934 First, build a history graph in the same way that
935 \fB\-\-full\-history\fR
936 with parent rewriting does (see above)\&.
938 Then simplify each commit
939 \fBC\fR
940 to its replacement
941 \fBC\*(Aq\fR
942 in the final history according to the following rules:
944 .RS 4
945 .ie n \{\
946 \h'-04'\(bu\h'+03'\c
948 .el \{\
949 .sp -1
950 .IP \(bu 2.3
953 \fBC\*(Aq\fR
955 \fBC\fR\&.
958 .RS 4
959 .ie n \{\
960 \h'-04'\(bu\h'+03'\c
962 .el \{\
963 .sp -1
964 .IP \(bu 2.3
966 Replace each parent
967 \fBP\fR
969 \fBC\*(Aq\fR
970 with its simplification
971 \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\&.
974 .RS 4
975 .ie n \{\
976 \h'-04'\(bu\h'+03'\c
978 .el \{\
979 .sp -1
980 .IP \(bu 2.3
982 If after this parent rewriting,
983 \fBC\*(Aq\fR
984 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\&.
987 The effect of this is best shown by way of comparing to
988 \fB\-\-full\-history\fR
989 with parent rewriting\&. The example turns into:
991 .if n \{\
992 .RS 4
995           \&.\-A\-\-\-M\-\-\-N\-\-\-O
996          /     /       /
997         I     B       D
998          \e   /       /
999           `\-\-\-\-\-\-\-\-\-\*(Aq
1001 .if n \{\
1005 Note the major differences in
1006 \fBN\fR,
1007 \fBP\fR, and
1008 \fBQ\fR
1009 over
1010 \fB\-\-full\-history\fR:
1012 .RS 4
1013 .ie n \{\
1014 \h'-04'\(bu\h'+03'\c
1016 .el \{\
1017 .sp -1
1018 .IP \(bu 2.3
1020 \fBN\fR\*(Aqs parent list had
1021 \fBI\fR
1022 removed, because it is an ancestor of the other parent
1023 \fBM\fR\&. Still,
1024 \fBN\fR
1025 remained because it is !TREESAME\&.
1028 .RS 4
1029 .ie n \{\
1030 \h'-04'\(bu\h'+03'\c
1032 .el \{\
1033 .sp -1
1034 .IP \(bu 2.3
1036 \fBP\fR\*(Aqs parent list similarly had
1037 \fBI\fR
1038 removed\&.
1039 \fBP\fR
1040 was then removed completely, because it had one parent and is TREESAME\&.
1043 .RS 4
1044 .ie n \{\
1045 \h'-04'\(bu\h'+03'\c
1047 .el \{\
1048 .sp -1
1049 .IP \(bu 2.3
1051 \fBQ\fR\*(Aqs parent list had
1052 \fBY\fR
1053 simplified to
1054 \fBX\fR\&.
1055 \fBX\fR
1056 was then removed, because it was a TREESAME root\&.
1057 \fBQ\fR
1058 was then removed completely, because it had one parent and is TREESAME\&.
1062 There is another simplification mode available:
1064 \-\-ancestry\-path[=<commit>]
1065 .RS 4
1066 Limit the displayed commits to those which are an ancestor of <commit>, or which are a descendant of <commit>, or are <commit> itself\&.
1068 As an example use case, consider the following commit history:
1070 .if n \{\
1071 .RS 4
1074             D\-\-\-E\-\-\-\-\-\-\-F
1075            /     \e       \e
1076           B\-\-\-C\-\-\-G\-\-\-H\-\-\-I\-\-\-J
1077          /                     \e
1078         A\-\-\-\-\-\-\-K\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-L\-\-M
1080 .if n \{\
1084 A regular
1085 \fID\&.\&.M\fR
1086 computes the set of commits that are ancestors of
1087 \fBM\fR, but excludes the ones that are ancestors of
1088 \fBD\fR\&. This is useful to see what happened to the history leading to
1089 \fBM\fR
1090 since
1091 \fBD\fR, in the sense that \(lqwhat does
1092 \fBM\fR
1093 have that did not exist in
1094 \fBD\fR\(rq\&. The result in this example would be all the commits, except
1095 \fBA\fR
1097 \fBB\fR
1098 (and
1099 \fBD\fR
1100 itself, of course)\&.
1102 When we want to find out what commits in
1103 \fBM\fR
1104 are contaminated with the bug introduced by
1105 \fBD\fR
1106 and need fixing, however, we might want to view only the subset of
1107 \fID\&.\&.M\fR
1108 that are actually descendants of
1109 \fBD\fR, i\&.e\&. excluding
1110 \fBC\fR
1112 \fBK\fR\&. This is exactly what the
1113 \fB\-\-ancestry\-path\fR
1114 option does\&. Applied to the
1115 \fID\&.\&.M\fR
1116 range, it results in:
1118 .if n \{\
1119 .RS 4
1122                 E\-\-\-\-\-\-\-F
1123                  \e       \e
1124                   G\-\-\-H\-\-\-I\-\-\-J
1125                                \e
1126                                 L\-\-M
1128 .if n \{\
1132 We can also use
1133 \fB\-\-ancestry\-path=D\fR
1134 instead of
1135 \fB\-\-ancestry\-path\fR
1136 which means the same thing when applied to the
1137 \fID\&.\&.M\fR
1138 range but is just more explicit\&.
1140 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
1141 \fBD\&.\&.M\fR
1142 which contain that topic in their ancestry path\&. So, using
1143 \fB\-\-ancestry\-path=H D\&.\&.M\fR
1144 for example would result in:
1146 .if n \{\
1147 .RS 4
1150                 E
1151                  \e
1152                   G\-\-\-H\-\-\-I\-\-\-J
1153                                \e
1154                                 L\-\-M
1156 .if n \{\
1160 Whereas
1161 \fB\-\-ancestry\-path=K D\&.\&.M\fR
1162 would result in
1164 .if n \{\
1165 .RS 4
1168                 K\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-L\-\-M
1170 .if n \{\
1176 Before discussing another option, \fB\-\-show\-pulls\fR, we need to create a new example history\&.
1178 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:
1180 .if n \{\
1181 .RS 4
1184           \&.\-A\-\-\-M\-\-\-\-\-C\-\-N\-\-\-O\-\-\-P
1185          /     / \e  \e  \e/   /   /
1186         I     B   \e  R\-\*(Aq`\-Z\*(Aq   /
1187          \e   /     \e/         /
1188           \e /      /\e        /
1189            `\-\-\-X\-\-\*(Aq  `\-\-\-Y\-\-\*(Aq
1191 .if n \{\
1196 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\&.
1198 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:
1200 .if n \{\
1201 .RS 4
1204         I\-\-\-X
1206 .if n \{\
1211 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:
1213 .if n \{\
1214 .RS 4
1217           \&.\-A\-\-\-M\-\-\-\-\-\-\-\-N\-\-\-O\-\-\-P
1218          /     / \e  \e  \e/   /   /
1219         I     B   \e  R\-\*(Aq`\-\-\*(Aq   /
1220          \e   /     \e/         /
1221           \e /      /\e        /
1222            `\-\-\-X\-\-\*(Aq  `\-\-\-\-\-\-\*(Aq
1224 .if n \{\
1229 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\&.
1231 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:
1233 .if n \{\
1234 .RS 4
1237           \&.\-A\-\-\-M\-\-\&.
1238          /     /    \e
1239         I     B      R
1240          \e   /      /
1241           \e /      /
1242            `\-\-\-X\-\-\*(Aq
1244 .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 \(lqsend me all object IDs which I need to download if I have the commit object
1450 \fIbar\fR
1451 but not
1452 \fIfoo\fR\(rq\&. See also
1453 \fB\-\-object\-names\fR
1454 below\&.
1457 \-\-in\-commit\-order
1458 .RS 4
1459 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\&.
1462 \-\-objects\-edge
1463 .RS 4
1464 Similar to
1465 \fB\-\-objects\fR, but also print the IDs of excluded commits prefixed with a \(lq\-\(rq character\&. This is used by
1466 \fBgit-pack-objects\fR(1)
1467 to build a \(lqthin\(rq pack, which records objects in deltified form based on objects contained in these excluded commits to reduce network traffic\&.
1470 \-\-objects\-edge\-aggressive
1471 .RS 4
1472 Similar to
1473 \fB\-\-objects\-edge\fR, but it tries harder to find excluded commits at the cost of increased time\&. This is used instead of
1474 \fB\-\-objects\-edge\fR
1475 to build \(lqthin\(rq packs for shallow repositories\&.
1478 \-\-indexed\-objects
1479 .RS 4
1480 Pretend as if all trees and blobs used by the index are listed on the command line\&. Note that you probably want to use
1481 \fB\-\-objects\fR, too\&.
1484 \-\-unpacked
1485 .RS 4
1486 Only useful with
1487 \fB\-\-objects\fR; print the object IDs that are not in packs\&.
1490 \-\-object\-names
1491 .RS 4
1492 Only useful with
1493 \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\&.
1496 \-\-no\-object\-names
1497 .RS 4
1498 Only useful with
1499 \fB\-\-objects\fR; does not print the names of the object IDs that are found\&. This inverts
1500 \fB\-\-object\-names\fR\&. This flag allows the output to be more easily parsed by commands such as
1501 \fBgit-cat-file\fR(1)\&.
1504 \-\-filter=<filter\-spec>
1505 .RS 4
1506 Only useful with one of the
1507 \fB\-\-objects*\fR; omits objects (usually blobs) from the list of printed objects\&. The
1508 \fI<filter\-spec>\fR
1509 may be one of the following:
1511 The form
1512 \fI\-\-filter=blob:none\fR
1513 omits all blobs\&.
1515 The form
1516 \fI\-\-filter=blob:limit=<n>[kmg]\fR
1517 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,
1518 \fIblob:limit=1k\fR
1519 is the same as
1520 \fIblob:limit=1024\fR\&.
1522 The form
1523 \fI\-\-filter=object:type=(tag|commit|tree|blob)\fR
1524 omits all objects which are not of the requested type\&.
1526 The form
1527 \fI\-\-filter=sparse:oid=<blob\-ish>\fR
1528 uses a sparse\-checkout specification contained in the blob (or blob\-expression)
1529 \fI<blob\-ish>\fR
1530 to omit blobs that would not be required for a sparse checkout on the requested refs\&.
1532 The form
1533 \fI\-\-filter=tree:<depth>\fR
1534 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\&.
1536 Note that the form
1537 \fI\-\-filter=sparse:path=<path>\fR
1538 that wants to read from an arbitrary path on the filesystem has been dropped for security reasons\&.
1540 Multiple
1541 \fI\-\-filter=\fR
1542 flags can be specified to combine filters\&. Only objects which are accepted by every filter are included\&.
1544 The form
1545 \fI\-\-filter=combine:<filter1>+<filter2>+\&...<filterN>\fR
1546 can also be used to combined several filters, but this is harder than just repeating the
1547 \fI\-\-filter\fR
1548 flag and is usually not necessary\&. Filters are joined by
1549 \fI+\fR
1550 and individual filters are %\-encoded (i\&.e\&. URL\-encoded)\&. Besides the
1551 \fI+\fR
1553 \fI%\fR
1554 characters, the following characters are reserved and also must be encoded:
1555 \fB~!@#$^&*()[]{}\e;",<>?\fR\fB\*(Aq`\fR
1556 as well as all characters with ASCII code <=
1557 \fB0x20\fR, which includes space and newline\&.
1559 Other arbitrary characters can also be encoded\&. For instance,
1560 \fIcombine:tree:3+blob:none\fR
1562 \fIcombine:tree%3A3+blob%3Anone\fR
1563 are equivalent\&.
1566 \-\-no\-filter
1567 .RS 4
1568 Turn off any previous
1569 \fB\-\-filter=\fR
1570 argument\&.
1573 \-\-filter\-provided\-objects
1574 .RS 4
1575 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
1576 \fB\-\-filter=\fR\&.
1579 \-\-filter\-print\-omitted
1580 .RS 4
1581 Only useful with
1582 \fB\-\-filter=\fR; prints a list of the objects omitted by the filter\&. Object IDs are prefixed with a \(lq~\(rq character\&.
1585 \-\-missing=<missing\-action>
1586 .RS 4
1587 A debug option to help with future "partial clone" development\&. This option specifies how missing objects are handled\&.
1589 The form
1590 \fI\-\-missing=error\fR
1591 requests that rev\-list stop with an error if a missing object is encountered\&. This is the default action\&.
1593 The form
1594 \fI\-\-missing=allow\-any\fR
1595 will allow object traversal to continue if a missing object is encountered\&. Missing objects will silently be omitted from the results\&.
1597 The form
1598 \fI\-\-missing=allow\-promisor\fR
1599 is like
1600 \fIallow\-any\fR, but will only allow object traversal to continue for EXPECTED promisor missing objects\&. Unexpected missing objects will raise an error\&.
1602 The form
1603 \fI\-\-missing=print\fR
1604 is like
1605 \fIallow\-any\fR, but will also print a list of the missing objects\&. Object IDs are prefixed with a \(lq?\(rq character\&.
1607 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\&.
1610 \-\-exclude\-promisor\-objects
1611 .RS 4
1612 (For internal use only\&.) Prefilter object traversal at promisor boundary\&. This is used with partial clone\&. This is stronger than
1613 \fB\-\-missing=allow\-promisor\fR
1614 because it limits the traversal, rather than just silencing errors about missing objects\&.
1617 \-\-no\-walk[=(sorted|unsorted)]
1618 .RS 4
1619 Only show the given commits, but do not traverse their ancestors\&. This has no effect if a range is specified\&. If the argument
1620 \fBunsorted\fR
1621 is given, the commits are shown in the order they were given on the command line\&. Otherwise (if
1622 \fBsorted\fR
1623 or no argument was given), the commits are shown in reverse chronological order by commit time\&. Cannot be combined with
1624 \fB\-\-graph\fR\&.
1627 \-\-do\-walk
1628 .RS 4
1629 Overrides a previous
1630 \fB\-\-no\-walk\fR\&.
1632 .SS "Commit Formatting"
1634 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)
1636 \-\-pretty[=<format>], \-\-format=<format>
1637 .RS 4
1638 Pretty\-print the contents of the commit logs in a given format, where
1639 \fI<format>\fR
1640 can be one of
1641 \fIoneline\fR,
1642 \fIshort\fR,
1643 \fImedium\fR,
1644 \fIfull\fR,
1645 \fIfuller\fR,
1646 \fIreference\fR,
1647 \fIemail\fR,
1648 \fIraw\fR,
1649 \fIformat:<string>\fR
1651 \fItformat:<string>\fR\&. When
1652 \fI<format>\fR
1653 is none of the above, and has
1654 \fI%placeholder\fR
1655 in it, it acts as if
1656 \fI\-\-pretty=tformat:<format>\fR
1657 were given\&.
1659 See the "PRETTY FORMATS" section for some additional details for each format\&. When
1660 \fI=<format>\fR
1661 part is omitted, it defaults to
1662 \fImedium\fR\&.
1664 Note: you can specify the default pretty format in the repository configuration (see
1665 \fBgit-config\fR(1))\&.
1668 \-\-abbrev\-commit
1669 .RS 4
1670 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\&.
1672 This should make "\-\-pretty=oneline" a whole lot more readable for people using 80\-column terminals\&.
1675 \-\-no\-abbrev\-commit
1676 .RS 4
1677 Show the full 40\-byte hexadecimal commit object name\&. This negates
1678 \fB\-\-abbrev\-commit\fR, either explicit or implied by other options such as "\-\-oneline"\&. It also overrides the
1679 \fBlog\&.abbrevCommit\fR
1680 variable\&.
1683 \-\-oneline
1684 .RS 4
1685 This is a shorthand for "\-\-pretty=oneline \-\-abbrev\-commit" used together\&.
1688 \-\-encoding=<encoding>
1689 .RS 4
1690 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
1691 \fBX\fR
1692 and we are outputting in
1693 \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\&.
1696 \-\-expand\-tabs=<n>, \-\-expand\-tabs, \-\-no\-expand\-tabs
1697 .RS 4
1698 Perform a tab expansion (replace each tab with enough spaces to fill to the next display column that is a multiple of
1699 \fI<n>\fR) in the log message before showing it in the output\&.
1700 \fB\-\-expand\-tabs\fR
1701 is a short\-hand for
1702 \fB\-\-expand\-tabs=8\fR, and
1703 \fB\-\-no\-expand\-tabs\fR
1704 is a short\-hand for
1705 \fB\-\-expand\-tabs=0\fR, which disables tab expansion\&.
1707 By default, tabs are expanded in pretty formats that indent the log message by 4 spaces (i\&.e\&.
1708 \fImedium\fR, which is the default,
1709 \fIfull\fR, and
1710 \fIfuller\fR)\&.
1713 \-\-show\-signature
1714 .RS 4
1715 Check the validity of a signed commit object by passing the signature to
1716 \fBgpg \-\-verify\fR
1717 and show the output\&.
1720 \-\-relative\-date
1721 .RS 4
1722 Synonym for
1723 \fB\-\-date=relative\fR\&.
1726 \-\-date=<format>
1727 .RS 4
1728 Only takes effect for dates shown in human\-readable format, such as when using
1729 \fB\-\-pretty\fR\&.
1730 \fBlog\&.date\fR
1731 config variable sets a default value for the log command\(cqs
1732 \fB\-\-date\fR
1733 option\&. By default, dates are shown in the original time zone (either committer\(cqs or author\(cqs)\&. If
1734 \fB\-local\fR
1735 is appended to the format (e\&.g\&.,
1736 \fBiso\-local\fR), the user\(cqs local time zone is used instead\&.
1738 \fB\-\-date=relative\fR
1739 shows dates relative to the current time, e\&.g\&. \(lq2 hours ago\(rq\&. The
1740 \fB\-local\fR
1741 option has no effect for
1742 \fB\-\-date=relative\fR\&.
1744 \fB\-\-date=local\fR
1745 is an alias for
1746 \fB\-\-date=default\-local\fR\&.
1748 \fB\-\-date=iso\fR
1750 \fB\-\-date=iso8601\fR) shows timestamps in a ISO 8601\-like format\&. The differences to the strict ISO 8601 format are:
1752 .RS 4
1753 .ie n \{\
1754 \h'-04'\(bu\h'+03'\c
1756 .el \{\
1757 .sp -1
1758 .IP \(bu 2.3
1760 a space instead of the
1761 \fBT\fR
1762 date/time delimiter
1765 .RS 4
1766 .ie n \{\
1767 \h'-04'\(bu\h'+03'\c
1769 .el \{\
1770 .sp -1
1771 .IP \(bu 2.3
1773 a space between time and time zone
1776 .RS 4
1777 .ie n \{\
1778 \h'-04'\(bu\h'+03'\c
1780 .el \{\
1781 .sp -1
1782 .IP \(bu 2.3
1784 no colon between hours and minutes of the time zone
1787 \fB\-\-date=iso\-strict\fR
1789 \fB\-\-date=iso8601\-strict\fR) shows timestamps in strict ISO 8601 format\&.
1791 \fB\-\-date=rfc\fR
1793 \fB\-\-date=rfc2822\fR) shows timestamps in RFC 2822 format, often found in email messages\&.
1795 \fB\-\-date=short\fR
1796 shows only the date, but not the time, in
1797 \fBYYYY\-MM\-DD\fR
1798 format\&.
1800 \fB\-\-date=raw\fR
1801 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
1802 \fB+\fR
1804 \fB\-\fR
1805 with four digits; the first two are hours, and the second two are minutes)\&. I\&.e\&., as if the timestamp were formatted with
1806 \fBstrftime("%s %z")\fR)\&. Note that the
1807 \fB\-local\fR
1808 option does not affect the seconds\-since\-epoch value (which is always measured in UTC), but does switch the accompanying timezone value\&.
1810 \fB\-\-date=human\fR
1811 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\&.
1813 \fB\-\-date=unix\fR
1814 shows the date as a Unix epoch timestamp (seconds since 1970)\&. As with
1815 \fB\-\-raw\fR, this is always in UTC and therefore
1816 \fB\-local\fR
1817 has no effect\&.
1819 \fB\-\-date=format:\&.\&.\&.\fR
1820 feeds the format
1821 \fB\&.\&.\&.\fR
1822 to your system
1823 \fBstrftime\fR, except for %s, %z, and %Z, which are handled internally\&. Use
1824 \fB\-\-date=format:%c\fR
1825 to show the date in your system locale\(cqs preferred format\&. See the
1826 \fBstrftime\fR
1827 manual for a complete list of format placeholders\&. When using
1828 \fB\-local\fR, the correct syntax is
1829 \fB\-\-date=format\-local:\&.\&.\&.\fR\&.
1831 \fB\-\-date=default\fR
1832 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\&.
1833 \fBThu Jan 1 00:00:00 1970 +0000\fR\&.
1836 \-\-header
1837 .RS 4
1838 Print the contents of the commit in raw\-format; each record is separated with a NUL character\&.
1841 \-\-no\-commit\-header
1842 .RS 4
1843 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\&.
1846 \-\-commit\-header
1847 .RS 4
1848 Overrides a previous
1849 \fB\-\-no\-commit\-header\fR\&.
1852 \-\-parents
1853 .RS 4
1854 Print also the parents of the commit (in the form "commit parent\&...")\&. Also enables parent rewriting, see
1855 \fIHistory Simplification\fR
1856 above\&.
1859 \-\-children
1860 .RS 4
1861 Print also the children of the commit (in the form "commit child\&...")\&. Also enables parent rewriting, see
1862 \fIHistory Simplification\fR
1863 above\&.
1866 \-\-timestamp
1867 .RS 4
1868 Print the raw commit timestamp\&.
1871 \-\-left\-right
1872 .RS 4
1873 Mark which side of a symmetric difference a commit is reachable from\&. Commits from the left side are prefixed with
1874 \fB<\fR
1875 and those from the right with
1876 \fB>\fR\&. If combined with
1877 \fB\-\-boundary\fR, those commits are prefixed with
1878 \fB\-\fR\&.
1880 For example, if you have this topology:
1882 .if n \{\
1883 .RS 4
1886              y\-\-\-b\-\-\-b  branch B
1887             / \e /
1888            /   \&.
1889           /   / \e
1890          o\-\-\-x\-\-\-a\-\-\-a  branch A
1892 .if n \{\
1896 you would get an output like this:
1898 .if n \{\
1899 .RS 4
1902         $ git rev\-list \-\-left\-right \-\-boundary \-\-pretty=oneline A\&.\&.\&.B
1904         >bbbbbbb\&.\&.\&. 3rd on b
1905         >bbbbbbb\&.\&.\&. 2nd on b
1906         <aaaaaaa\&.\&.\&. 3rd on a
1907         <aaaaaaa\&.\&.\&. 2nd on a
1908         \-yyyyyyy\&.\&.\&. 1st on b
1909         \-xxxxxxx\&.\&.\&. 1st on a
1911 .if n \{\
1917 \-\-graph
1918 .RS 4
1919 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
1920 \fB\-\-no\-walk\fR\&.
1922 This enables parent rewriting, see
1923 \fIHistory Simplification\fR
1924 above\&.
1926 This implies the
1927 \fB\-\-topo\-order\fR
1928 option by default, but the
1929 \fB\-\-date\-order\fR
1930 option may also be specified\&.
1933 \-\-show\-linear\-break[=<barrier>]
1934 .RS 4
1935 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
1936 \fB<barrier>\fR
1937 is specified, it is the string that will be shown instead of the default one\&.
1940 \-\-count
1941 .RS 4
1942 Print a number stating how many commits would have been listed, and suppress all other output\&. When used together with
1943 \fB\-\-left\-right\fR, instead print the counts for left and right commits, separated by a tab\&. When used together with
1944 \fB\-\-cherry\-mark\fR, omit patch equivalent commits from these counts and print the count for equivalent commits separated by a tab\&.
1946 .SH "PRETTY FORMATS"
1948 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\&.
1950 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:
1952 .RS 4
1953 .ie n \{\
1954 \h'-04'\(bu\h'+03'\c
1956 .el \{\
1957 .sp -1
1958 .IP \(bu 2.3
1960 \fIoneline\fR
1962 .if n \{\
1963 .RS 4
1966 <hash> <title\-line>
1968 .if n \{\
1972 This is designed to be as compact as possible\&.
1975 .RS 4
1976 .ie n \{\
1977 \h'-04'\(bu\h'+03'\c
1979 .el \{\
1980 .sp -1
1981 .IP \(bu 2.3
1983 \fIshort\fR
1985 .if n \{\
1986 .RS 4
1989 commit <hash>
1990 Author: <author>
1992 .if n \{\
1996 .if n \{\
1997 .RS 4
2000 <title\-line>
2002 .if n \{\
2007 .RS 4
2008 .ie n \{\
2009 \h'-04'\(bu\h'+03'\c
2011 .el \{\
2012 .sp -1
2013 .IP \(bu 2.3
2015 \fImedium\fR
2017 .if n \{\
2018 .RS 4
2021 commit <hash>
2022 Author: <author>
2023 Date:   <author\-date>
2025 .if n \{\
2029 .if n \{\
2030 .RS 4
2033 <title\-line>
2035 .if n \{\
2039 .if n \{\
2040 .RS 4
2043 <full\-commit\-message>
2045 .if n \{\
2050 .RS 4
2051 .ie n \{\
2052 \h'-04'\(bu\h'+03'\c
2054 .el \{\
2055 .sp -1
2056 .IP \(bu 2.3
2058 \fIfull\fR
2060 .if n \{\
2061 .RS 4
2064 commit <hash>
2065 Author: <author>
2066 Commit: <committer>
2068 .if n \{\
2072 .if n \{\
2073 .RS 4
2076 <title\-line>
2078 .if n \{\
2082 .if n \{\
2083 .RS 4
2086 <full\-commit\-message>
2088 .if n \{\
2093 .RS 4
2094 .ie n \{\
2095 \h'-04'\(bu\h'+03'\c
2097 .el \{\
2098 .sp -1
2099 .IP \(bu 2.3
2101 \fIfuller\fR
2103 .if n \{\
2104 .RS 4
2107 commit <hash>
2108 Author:     <author>
2109 AuthorDate: <author\-date>
2110 Commit:     <committer>
2111 CommitDate: <committer\-date>
2113 .if n \{\
2117 .if n \{\
2118 .RS 4
2121 <title\-line>
2123 .if n \{\
2127 .if n \{\
2128 .RS 4
2131 <full\-commit\-message>
2133 .if n \{\
2138 .RS 4
2139 .ie n \{\
2140 \h'-04'\(bu\h'+03'\c
2142 .el \{\
2143 .sp -1
2144 .IP \(bu 2.3
2146 \fIreference\fR
2148 .if n \{\
2149 .RS 4
2152 <abbrev\-hash> (<title\-line>, <short\-author\-date>)
2154 .if n \{\
2158 This format is used to refer to another commit in a commit message and is the same as
2159 \fB\-\-pretty=\*(Aqformat:%C(auto)%h (%s, %ad)\*(Aq\fR\&. By default, the date is formatted with
2160 \fB\-\-date=short\fR
2161 unless another
2162 \fB\-\-date\fR
2163 option is explicitly specified\&. As with any
2164 \fBformat:\fR
2165 with format placeholders, its output is not affected by other options like
2166 \fB\-\-decorate\fR
2168 \fB\-\-walk\-reflogs\fR\&.
2171 .RS 4
2172 .ie n \{\
2173 \h'-04'\(bu\h'+03'\c
2175 .el \{\
2176 .sp -1
2177 .IP \(bu 2.3
2179 \fIemail\fR
2181 .if n \{\
2182 .RS 4
2185 From <hash> <date>
2186 From: <author>
2187 Date: <author\-date>
2188 Subject: [PATCH] <title\-line>
2190 .if n \{\
2194 .if n \{\
2195 .RS 4
2198 <full\-commit\-message>
2200 .if n \{\
2205 .RS 4
2206 .ie n \{\
2207 \h'-04'\(bu\h'+03'\c
2209 .el \{\
2210 .sp -1
2211 .IP \(bu 2.3
2213 \fImboxrd\fR
2215 Like
2216 \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\&.
2219 .RS 4
2220 .ie n \{\
2221 \h'-04'\(bu\h'+03'\c
2223 .el \{\
2224 .sp -1
2225 .IP \(bu 2.3
2227 \fIraw\fR
2230 \fIraw\fR
2231 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
2232 \fIparents\fR
2233 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
2234 \fBgit log \-\-raw\fR\&. To get full object names in a raw diff format, use
2235 \fB\-\-no\-abbrev\fR\&.
2238 .RS 4
2239 .ie n \{\
2240 \h'-04'\(bu\h'+03'\c
2242 .el \{\
2243 .sp -1
2244 .IP \(bu 2.3
2246 \fIformat:<format\-string>\fR
2249 \fIformat:<format\-string>\fR
2250 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
2251 \fI%n\fR
2252 instead of
2253 \fI\en\fR\&.
2255 E\&.g,
2256 \fIformat:"The author of %h was %an, %ar%nThe title was >>%s<<%n"\fR
2257 would show something like this:
2259 .if n \{\
2260 .RS 4
2263 The author of fe6e0ee was Junio C Hamano, 23 hours ago
2264 The title was >>t4119: test autocomputing \-p<n> for traditional diff input\&.<<
2266 .if n \{\
2270 The placeholders are:
2272 .RS 4
2273 .ie n \{\
2274 \h'-04'\(bu\h'+03'\c
2276 .el \{\
2277 .sp -1
2278 .IP \(bu 2.3
2280 Placeholders that expand to a single literal character:
2282 \fI%n\fR
2283 .RS 4
2284 newline
2287 \fI%%\fR
2288 .RS 4
2289 a raw
2290 \fI%\fR
2293 \fI%x00\fR
2294 .RS 4
2295 \fI%x\fR
2296 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)\&.
2300 .RS 4
2301 .ie n \{\
2302 \h'-04'\(bu\h'+03'\c
2304 .el \{\
2305 .sp -1
2306 .IP \(bu 2.3
2308 Placeholders that affect formatting of later placeholders:
2310 \fI%Cred\fR
2311 .RS 4
2312 switch color to red
2315 \fI%Cgreen\fR
2316 .RS 4
2317 switch color to green
2320 \fI%Cblue\fR
2321 .RS 4
2322 switch color to blue
2325 \fI%Creset\fR
2326 .RS 4
2327 reset color
2330 \fI%C(\&...)\fR
2331 .RS 4
2332 color specification, as described under Values in the "CONFIGURATION FILE" section of
2333 \fBgit-config\fR(1)\&. By default, colors are shown only when enabled for log output (by
2334 \fBcolor\&.diff\fR,
2335 \fBcolor\&.ui\fR, or
2336 \fB\-\-color\fR, and respecting the
2337 \fBauto\fR
2338 settings of the former if we are going to a terminal)\&.
2339 \fB%C(auto,\&.\&.\&.)\fR
2340 is accepted as a historical synonym for the default (e\&.g\&.,
2341 \fB%C(auto,red)\fR)\&. Specifying
2342 \fB%C(always,\&.\&.\&.)\fR
2343 will show the colors even when color is not otherwise enabled (though consider just using
2344 \fB\-\-color=always\fR
2345 to enable color for the whole output, including this format and anything else git might color)\&.
2346 \fBauto\fR
2347 alone (i\&.e\&.
2348 \fB%C(auto)\fR) will turn on auto coloring on the next placeholders until the color is switched again\&.
2351 \fI%m\fR
2352 .RS 4
2353 left (\fB<\fR), right (\fB>\fR) or boundary (\fB\-\fR) mark
2356 \fI%w([<w>[,<i1>[,<i2>]]])\fR
2357 .RS 4
2358 switch line wrapping, like the \-w option of
2359 \fBgit-shortlog\fR(1)\&.
2362 \fI%<( <N> [,trunc|ltrunc|mtrunc])\fR
2363 .RS 4
2364 make the next placeholder take at least N column widths, padding spaces on the right if necessary\&. Optionally truncate (with ellipsis
2365 \fI\&.\&.\fR) at the left (ltrunc)
2366 \fB\&.\&.ft\fR, the middle (mtrunc)
2367 \fBmi\&.\&.le\fR, or the end (trunc)
2368 \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\&.
2371 \fI%<|( <M> )\fR
2372 .RS 4
2373 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\&.
2376 \fI%>( <N> )\fR, \fI%>|( <M> )\fR
2377 .RS 4
2378 similar to
2379 \fI%<( <N> )\fR,
2380 \fI%<|( <M> )\fR
2381 respectively, but padding spaces on the left
2384 \fI%>>( <N> )\fR, \fI%>>|( <M> )\fR
2385 .RS 4
2386 similar to
2387 \fI%>( <N> )\fR,
2388 \fI%>|( <M> )\fR
2389 respectively, except that if the next placeholder takes more spaces than given and there are spaces on its left, use those spaces
2392 \fI%><( <N> )\fR, \fI%><|( <M> )\fR
2393 .RS 4
2394 similar to
2395 \fI%<( <N> )\fR,
2396 \fI%<|( <M> )\fR
2397 respectively, but padding both sides (i\&.e\&. the text is centered)
2401 .RS 4
2402 .ie n \{\
2403 \h'-04'\(bu\h'+03'\c
2405 .el \{\
2406 .sp -1
2407 .IP \(bu 2.3
2409 Placeholders that expand to information extracted from the commit:
2411 \fI%H\fR
2412 .RS 4
2413 commit hash
2416 \fI%h\fR
2417 .RS 4
2418 abbreviated commit hash
2421 \fI%T\fR
2422 .RS 4
2423 tree hash
2426 \fI%t\fR
2427 .RS 4
2428 abbreviated tree hash
2431 \fI%P\fR
2432 .RS 4
2433 parent hashes
2436 \fI%p\fR
2437 .RS 4
2438 abbreviated parent hashes
2441 \fI%an\fR
2442 .RS 4
2443 author name
2446 \fI%aN\fR
2447 .RS 4
2448 author name (respecting \&.mailmap, see
2449 \fBgit-shortlog\fR(1)
2451 \fBgit-blame\fR(1))
2454 \fI%ae\fR
2455 .RS 4
2456 author email
2459 \fI%aE\fR
2460 .RS 4
2461 author email (respecting \&.mailmap, see
2462 \fBgit-shortlog\fR(1)
2464 \fBgit-blame\fR(1))
2467 \fI%al\fR
2468 .RS 4
2469 author email local\-part (the part before the
2470 \fI@\fR
2471 sign)
2474 \fI%aL\fR
2475 .RS 4
2476 author local\-part (see
2477 \fI%al\fR) respecting \&.mailmap, see
2478 \fBgit-shortlog\fR(1)
2480 \fBgit-blame\fR(1))
2483 \fI%ad\fR
2484 .RS 4
2485 author date (format respects \-\-date= option)
2488 \fI%aD\fR
2489 .RS 4
2490 author date, RFC2822 style
2493 \fI%ar\fR
2494 .RS 4
2495 author date, relative
2498 \fI%at\fR
2499 .RS 4
2500 author date, UNIX timestamp
2503 \fI%ai\fR
2504 .RS 4
2505 author date, ISO 8601\-like format
2508 \fI%aI\fR
2509 .RS 4
2510 author date, strict ISO 8601 format
2513 \fI%as\fR
2514 .RS 4
2515 author date, short format (\fBYYYY\-MM\-DD\fR)
2518 \fI%ah\fR
2519 .RS 4
2520 author date, human style (like the
2521 \fB\-\-date=human\fR
2522 option of
2523 \fBgit-rev-list\fR(1))
2526 \fI%cn\fR
2527 .RS 4
2528 committer name
2531 \fI%cN\fR
2532 .RS 4
2533 committer name (respecting \&.mailmap, see
2534 \fBgit-shortlog\fR(1)
2536 \fBgit-blame\fR(1))
2539 \fI%ce\fR
2540 .RS 4
2541 committer email
2544 \fI%cE\fR
2545 .RS 4
2546 committer email (respecting \&.mailmap, see
2547 \fBgit-shortlog\fR(1)
2549 \fBgit-blame\fR(1))
2552 \fI%cl\fR
2553 .RS 4
2554 committer email local\-part (the part before the
2555 \fI@\fR
2556 sign)
2559 \fI%cL\fR
2560 .RS 4
2561 committer local\-part (see
2562 \fI%cl\fR) respecting \&.mailmap, see
2563 \fBgit-shortlog\fR(1)
2565 \fBgit-blame\fR(1))
2568 \fI%cd\fR
2569 .RS 4
2570 committer date (format respects \-\-date= option)
2573 \fI%cD\fR
2574 .RS 4
2575 committer date, RFC2822 style
2578 \fI%cr\fR
2579 .RS 4
2580 committer date, relative
2583 \fI%ct\fR
2584 .RS 4
2585 committer date, UNIX timestamp
2588 \fI%ci\fR
2589 .RS 4
2590 committer date, ISO 8601\-like format
2593 \fI%cI\fR
2594 .RS 4
2595 committer date, strict ISO 8601 format
2598 \fI%cs\fR
2599 .RS 4
2600 committer date, short format (\fBYYYY\-MM\-DD\fR)
2603 \fI%ch\fR
2604 .RS 4
2605 committer date, human style (like the
2606 \fB\-\-date=human\fR
2607 option of
2608 \fBgit-rev-list\fR(1))
2611 \fI%d\fR
2612 .RS 4
2613 ref names, like the \-\-decorate option of
2614 \fBgit-log\fR(1)
2617 \fI%D\fR
2618 .RS 4
2619 ref names without the " (", ")" wrapping\&.
2622 \fI%(decorate[:<options>])\fR
2623 .RS 4
2624 ref names with custom decorations\&. The
2625 \fBdecorate\fR
2626 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\&.
2628 .RS 4
2629 .ie n \{\
2630 \h'-04'\(bu\h'+03'\c
2632 .el \{\
2633 .sp -1
2634 .IP \(bu 2.3
2636 \fIprefix=<value>\fR: Shown before the list of ref names\&. Defaults to "\ \&\fB(\fR"\&.
2639 .RS 4
2640 .ie n \{\
2641 \h'-04'\(bu\h'+03'\c
2643 .el \{\
2644 .sp -1
2645 .IP \(bu 2.3
2647 \fIsuffix=<value>\fR: Shown after the list of ref names\&. Defaults to "\fB)\fR"\&.
2650 .RS 4
2651 .ie n \{\
2652 \h'-04'\(bu\h'+03'\c
2654 .el \{\
2655 .sp -1
2656 .IP \(bu 2.3
2658 \fIseparator=<value>\fR: Shown between ref names\&. Defaults to "\fB,\fR\ \&"\&.
2661 .RS 4
2662 .ie n \{\
2663 \h'-04'\(bu\h'+03'\c
2665 .el \{\
2666 .sp -1
2667 .IP \(bu 2.3
2669 \fIpointer=<value>\fR: Shown between HEAD and the branch it points to, if any\&. Defaults to "\ \&\fB\->\fR\ \&"\&.
2672 .RS 4
2673 .ie n \{\
2674 \h'-04'\(bu\h'+03'\c
2676 .el \{\
2677 .sp -1
2678 .IP \(bu 2.3
2680 \fItag=<value>\fR: Shown before tag names\&. Defaults to "\fBtag:\fR\ \&"\&.
2683 For example, to produce decorations with no wrapping or tag annotations, and spaces as separators:
2685 \fB%(decorate:prefix=,suffix=,tag=,separator= )\fR
2688 \fI%(describe[:<options>])\fR
2689 .RS 4
2690 human\-readable name, like
2691 \fBgit-describe\fR(1); empty string for undescribable commits\&. The
2692 \fBdescribe\fR
2693 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\&.
2695 .RS 4
2696 .ie n \{\
2697 \h'-04'\(bu\h'+03'\c
2699 .el \{\
2700 .sp -1
2701 .IP \(bu 2.3
2703 \fItags[=<bool\-value>]\fR: Instead of only considering annotated tags, consider lightweight tags as well\&.
2706 .RS 4
2707 .ie n \{\
2708 \h'-04'\(bu\h'+03'\c
2710 .el \{\
2711 .sp -1
2712 .IP \(bu 2.3
2714 \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\&.
2717 .RS 4
2718 .ie n \{\
2719 \h'-04'\(bu\h'+03'\c
2721 .el \{\
2722 .sp -1
2723 .IP \(bu 2.3
2725 \fImatch=<pattern>\fR: Only consider tags matching the given
2726 \fBglob(7)\fR
2727 pattern, excluding the "refs/tags/" prefix\&.
2730 .RS 4
2731 .ie n \{\
2732 \h'-04'\(bu\h'+03'\c
2734 .el \{\
2735 .sp -1
2736 .IP \(bu 2.3
2738 \fIexclude=<pattern>\fR: Do not consider tags matching the given
2739 \fBglob(7)\fR
2740 pattern, excluding the "refs/tags/" prefix\&.
2744 \fI%S\fR
2745 .RS 4
2746 ref name given on the command line by which the commit was reached (like
2747 \fBgit log \-\-source\fR), only works with
2748 \fBgit log\fR
2751 \fI%e\fR
2752 .RS 4
2753 encoding
2756 \fI%s\fR
2757 .RS 4
2758 subject
2761 \fI%f\fR
2762 .RS 4
2763 sanitized subject line, suitable for a filename
2766 \fI%b\fR
2767 .RS 4
2768 body
2771 \fI%B\fR
2772 .RS 4
2773 raw body (unwrapped subject and body)
2776 \fI%GG\fR
2777 .RS 4
2778 raw verification message from GPG for a signed commit
2781 \fI%G?\fR
2782 .RS 4
2783 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
2786 \fI%GS\fR
2787 .RS 4
2788 show the name of the signer for a signed commit
2791 \fI%GK\fR
2792 .RS 4
2793 show the key used to sign a signed commit
2796 \fI%GF\fR
2797 .RS 4
2798 show the fingerprint of the key used to sign a signed commit
2801 \fI%GP\fR
2802 .RS 4
2803 show the fingerprint of the primary key whose subkey was used to sign a signed commit
2806 \fI%GT\fR
2807 .RS 4
2808 show the trust level for the key used to sign a signed commit
2811 \fI%gD\fR
2812 .RS 4
2813 reflog selector, e\&.g\&.,
2814 \fBrefs/stash@{1}\fR
2816 \fBrefs/stash@{2 minutes ago}\fR; the format follows the rules described for the
2817 \fB\-g\fR
2818 option\&. The portion before the
2819 \fB@\fR
2820 is the refname as given on the command line (so
2821 \fBgit log \-g refs/heads/master\fR
2822 would yield
2823 \fBrefs/heads/master@{0}\fR)\&.
2826 \fI%gd\fR
2827 .RS 4
2828 shortened reflog selector; same as
2829 \fB%gD\fR, but the refname portion is shortened for human readability (so
2830 \fBrefs/heads/master\fR
2831 becomes just
2832 \fBmaster\fR)\&.
2835 \fI%gn\fR
2836 .RS 4
2837 reflog identity name
2840 \fI%gN\fR
2841 .RS 4
2842 reflog identity name (respecting \&.mailmap, see
2843 \fBgit-shortlog\fR(1)
2845 \fBgit-blame\fR(1))
2848 \fI%ge\fR
2849 .RS 4
2850 reflog identity email
2853 \fI%gE\fR
2854 .RS 4
2855 reflog identity email (respecting \&.mailmap, see
2856 \fBgit-shortlog\fR(1)
2858 \fBgit-blame\fR(1))
2861 \fI%gs\fR
2862 .RS 4
2863 reflog subject
2866 \fI%(trailers[:<options>])\fR
2867 .RS 4
2868 display the trailers of the body as interpreted by
2869 \fBgit-interpret-trailers\fR(1)\&. The
2870 \fBtrailers\fR
2871 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\&.
2873 .RS 4
2874 .ie n \{\
2875 \h'-04'\(bu\h'+03'\c
2877 .el \{\
2878 .sp -1
2879 .IP \(bu 2.3
2881 \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
2882 \fBonly\fR
2883 option so that non\-trailer lines in the trailer block are hidden\&. If that is not desired it can be disabled with
2884 \fBonly=false\fR\&. E\&.g\&.,
2885 \fB%(trailers:key=Reviewed\-by)\fR
2886 shows trailer lines with key
2887 \fBReviewed\-by\fR\&.
2890 .RS 4
2891 .ie n \{\
2892 \h'-04'\(bu\h'+03'\c
2894 .el \{\
2895 .sp -1
2896 .IP \(bu 2.3
2898 \fIonly[=<bool>]\fR: select whether non\-trailer lines from the trailer block should be included\&.
2901 .RS 4
2902 .ie n \{\
2903 \h'-04'\(bu\h'+03'\c
2905 .el \{\
2906 .sp -1
2907 .IP \(bu 2.3
2909 \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
2910 \fB%x2C\fR
2911 as it would otherwise be parsed as next option\&. E\&.g\&.,
2912 \fB%(trailers:key=Ticket,separator=%x2C )\fR
2913 shows all trailer lines whose key is "Ticket" separated by a comma and a space\&.
2916 .RS 4
2917 .ie n \{\
2918 \h'-04'\(bu\h'+03'\c
2920 .el \{\
2921 .sp -1
2922 .IP \(bu 2.3
2924 \fIunfold[=<bool>]\fR: make it behave as if interpret\-trailer\(cqs
2925 \fB\-\-unfold\fR
2926 option was given\&. E\&.g\&.,
2927 \fB%(trailers:only,unfold=true)\fR
2928 unfolds and shows all trailer lines\&.
2931 .RS 4
2932 .ie n \{\
2933 \h'-04'\(bu\h'+03'\c
2935 .el \{\
2936 .sp -1
2937 .IP \(bu 2.3
2939 \fIkeyonly[=<bool>]\fR: only show the key part of the trailer\&.
2942 .RS 4
2943 .ie n \{\
2944 \h'-04'\(bu\h'+03'\c
2946 .el \{\
2947 .sp -1
2948 .IP \(bu 2.3
2950 \fIvalueonly[=<bool>]\fR: only show the value part of the trailer\&.
2953 .RS 4
2954 .ie n \{\
2955 \h'-04'\(bu\h'+03'\c
2957 .el \{\
2958 .sp -1
2959 .IP \(bu 2.3
2961 \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
2962 \fIseparator=<sep>\fR
2963 above\&.
2968 .if n \{\
2971 .RS 4
2972 .it 1 an-trap
2973 .nr an-no-space-flag 1
2974 .nr an-break-flag 1
2976 .ps +1
2977 \fBNote\fR
2978 .ps -1
2981 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\&.
2982 .sp .5v
2985 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\&.
2987 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\&.
2989 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\&.
2991 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\&.
2993 .RS 4
2994 .ie n \{\
2995 \h'-04'\(bu\h'+03'\c
2997 .el \{\
2998 .sp -1
2999 .IP \(bu 2.3
3001 \fItformat:\fR
3004 \fItformat:\fR
3005 format works exactly like
3006 \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:
3008 .if n \{\
3009 .RS 4
3012 $ git log \-2 \-\-pretty=format:%h 4da45bef \e
3013   | perl \-pe \*(Aq$_ \&.= " \-\- NO NEWLINE\en" unless /\en/\*(Aq
3014 4da45be
3015 7134973 \-\- NO NEWLINE
3017 $ git log \-2 \-\-pretty=tformat:%h 4da45bef \e
3018   | perl \-pe \*(Aq$_ \&.= " \-\- NO NEWLINE\en" unless /\en/\*(Aq
3019 4da45be
3020 7134973
3022 .if n \{\
3026 In addition, any unrecognized string that has a
3027 \fB%\fR
3028 in it is interpreted as if it has
3029 \fBtformat:\fR
3030 in front of it\&. For example, these two are equivalent:
3032 .if n \{\
3033 .RS 4
3036 $ git log \-2 \-\-pretty=tformat:%h 4da45bef
3037 $ git log \-2 \-\-pretty=%h 4da45bef
3039 .if n \{\
3044 .SH "EXAMPLES"
3046 .RS 4
3047 .ie n \{\
3048 \h'-04'\(bu\h'+03'\c
3050 .el \{\
3051 .sp -1
3052 .IP \(bu 2.3
3054 Print the list of commits reachable from the current branch\&.
3056 .if n \{\
3057 .RS 4
3060 git rev\-list HEAD
3062 .if n \{\
3068 .RS 4
3069 .ie n \{\
3070 \h'-04'\(bu\h'+03'\c
3072 .el \{\
3073 .sp -1
3074 .IP \(bu 2.3
3076 Print the list of commits on this branch, but not present in the upstream branch\&.
3078 .if n \{\
3079 .RS 4
3082 git rev\-list @{upstream}\&.\&.HEAD
3084 .if n \{\
3090 .RS 4
3091 .ie n \{\
3092 \h'-04'\(bu\h'+03'\c
3094 .el \{\
3095 .sp -1
3096 .IP \(bu 2.3
3098 Format commits with their author and commit message (see also the porcelain
3099 \fBgit-log\fR(1))\&.
3101 .if n \{\
3102 .RS 4
3105 git rev\-list \-\-format=medium HEAD
3107 .if n \{\
3113 .RS 4
3114 .ie n \{\
3115 \h'-04'\(bu\h'+03'\c
3117 .el \{\
3118 .sp -1
3119 .IP \(bu 2.3
3121 Format commits along with their diffs (see also the porcelain
3122 \fBgit-log\fR(1), which can do this in a single process)\&.
3124 .if n \{\
3125 .RS 4
3128 git rev\-list HEAD |
3129 git diff\-tree \-\-stdin \-\-format=medium \-p
3131 .if n \{\
3137 .RS 4
3138 .ie n \{\
3139 \h'-04'\(bu\h'+03'\c
3141 .el \{\
3142 .sp -1
3143 .IP \(bu 2.3
3145 Print the list of commits on the current branch that touched any file in the
3146 \fBDocumentation\fR
3147 directory\&.
3149 .if n \{\
3150 .RS 4
3153 git rev\-list HEAD \-\- Documentation/
3155 .if n \{\
3161 .RS 4
3162 .ie n \{\
3163 \h'-04'\(bu\h'+03'\c
3165 .el \{\
3166 .sp -1
3167 .IP \(bu 2.3
3169 Print the list of commits authored by you in the past year, on any branch, tag, or other ref\&.
3171 .if n \{\
3172 .RS 4
3175 git rev\-list \-\-author=you@example\&.com \-\-since=1\&.year\&.ago \-\-all
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 Print the list of objects reachable from the current branch (i\&.e\&., all commits and the blobs and trees they contain)\&.
3193 .if n \{\
3194 .RS 4
3197 git rev\-list \-\-objects HEAD
3199 .if n \{\
3205 .RS 4
3206 .ie n \{\
3207 \h'-04'\(bu\h'+03'\c
3209 .el \{\
3210 .sp -1
3211 .IP \(bu 2.3
3213 Compare the disk size of all reachable objects, versus those reachable from reflogs, versus the total packed size\&. This can tell you whether running
3214 \fBgit repack \-ad\fR
3215 might reduce the repository size (by dropping unreachable objects), and whether expiring reflogs might help\&.
3217 .if n \{\
3218 .RS 4
3221 # reachable objects
3222 git rev\-list \-\-disk\-usage \-\-objects \-\-all
3223 # plus reflogs
3224 git rev\-list \-\-disk\-usage \-\-objects \-\-all \-\-reflog
3225 # total disk size used
3226 du \-c \&.git/objects/pack/*\&.pack \&.git/objects/??/*
3227 # alternative to du: add up "size" and "size\-pack" fields
3228 git count\-objects \-v
3230 .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 \{\
3264 .RS 4
3265 .ie n \{\
3266 \h'-04'\(bu\h'+03'\c
3268 .el \{\
3269 .sp -1
3270 .IP \(bu 2.3
3272 Compare the on\-disk size of branches in one group of refs, excluding another\&. If you co\-mingle objects from multiple remotes in a single repository, this can show which remotes are contributing to the repository size (taking the size of
3273 \fBorigin\fR
3274 as a baseline)\&.
3276 .if n \{\
3277 .RS 4
3280 git rev\-list \-\-disk\-usage \-\-objects \-\-remotes=$suspect \-\-not \-\-remotes=origin
3282 .if n \{\
3287 .SH "GIT"
3289 Part of the \fBgit\fR(1) suite