Autogenerated manpages for v2.40.0-rc2
[git-manpages.git] / man1 / git-log.1
blob717cdf5022bda40649a92b00bdd02390119d9fca
1 '\" t
2 .\"     Title: git-log
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: 03/06/2023
6 .\"    Manual: Git Manual
7 .\"    Source: Git 2.40.0.rc2
8 .\"  Language: English
9 .\"
10 .TH "GIT\-LOG" "1" "03/06/2023" "Git 2\&.40\&.0\&.rc2" "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-log \- Show commit logs
32 .SH "SYNOPSIS"
33 .sp
34 .nf
35 \fIgit log\fR [<options>] [<revision\-range>] [[\-\-] <path>\&...]
36 .fi
37 .sp
38 .SH "DESCRIPTION"
39 .sp
40 Shows the commit logs\&.
41 .sp
42 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\&.
43 .sp
44 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\&.
45 .sp
46 Thus, the following command:
47 .sp
48 .if n \{\
49 .RS 4
50 .\}
51 .nf
52 $ git log foo bar ^baz
53 .fi
54 .if n \{\
55 .RE
56 .\}
57 .sp
58 .sp
59 means "list all the commits which are reachable from \fIfoo\fR or \fIbar\fR, but not from \fIbaz\fR"\&.
60 .sp
61 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:
62 .sp
63 .if n \{\
64 .RS 4
65 .\}
66 .nf
67 $ git log origin\&.\&.HEAD
68 $ git log HEAD ^origin
69 .fi
70 .if n \{\
71 .RE
72 .\}
73 .sp
74 .sp
75 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:
76 .sp
77 .if n \{\
78 .RS 4
79 .\}
80 .nf
81 $ git log A B \-\-not $(git merge\-base \-\-all A B)
82 $ git log A\&.\&.\&.B
83 .fi
84 .if n \{\
85 .RE
86 .\}
87 .sp
88 .sp
89 The command takes options applicable to the \fBgit-rev-list\fR(1) command to control what is shown and how, and options applicable to the \fBgit-diff\fR(1) command to control how the changes each commit introduces are shown\&.
90 .SH "OPTIONS"
91 .PP
92 \-\-follow
93 .RS 4
94 Continue listing the history of a file beyond renames (works only for a single file)\&.
95 .RE
96 .PP
97 \-\-no\-decorate, \-\-decorate[=short|full|auto|no]
98 .RS 4
99 Print out the ref names of any commits that are shown\&. If
100 \fIshort\fR
101 is specified, the ref name prefixes
102 \fIrefs/heads/\fR,
103 \fIrefs/tags/\fR
105 \fIrefs/remotes/\fR
106 will not be printed\&. If
107 \fIfull\fR
108 is specified, the full ref name (including prefix) will be printed\&. If
109 \fIauto\fR
110 is specified, then if the output is going to a terminal, the ref names are shown as if
111 \fIshort\fR
112 were given, otherwise no ref names are shown\&. The option
113 \fB\-\-decorate\fR
114 is short\-hand for
115 \fB\-\-decorate=short\fR\&. Default to configuration value of
116 \fBlog\&.decorate\fR
117 if configured, otherwise,
118 \fBauto\fR\&.
121 \-\-decorate\-refs=<pattern>, \-\-decorate\-refs\-exclude=<pattern>
122 .RS 4
123 For each candidate reference, do not use it for decoration if it matches any patterns given to
124 \fB\-\-decorate\-refs\-exclude\fR
125 or if it doesn\(cqt match any of the patterns given to
126 \fB\-\-decorate\-refs\fR\&. The
127 \fBlog\&.excludeDecoration\fR
128 config option allows excluding refs from the decorations, but an explicit
129 \fB\-\-decorate\-refs\fR
130 pattern will override a match in
131 \fBlog\&.excludeDecoration\fR\&.
133 If none of these options or config settings are given, then references are used as decoration if they match
134 \fBHEAD\fR,
135 \fBrefs/heads/\fR,
136 \fBrefs/remotes/\fR,
137 \fBrefs/stash/\fR, or
138 \fBrefs/tags/\fR\&.
141 \-\-clear\-decorations
142 .RS 4
143 When specified, this option clears all previous
144 \fB\-\-decorate\-refs\fR
146 \fB\-\-decorate\-refs\-exclude\fR
147 options and relaxes the default decoration filter to include all references\&. This option is assumed if the config value
148 \fBlog\&.initialDecorationSet\fR
149 is set to
150 \fBall\fR\&.
153 \-\-source
154 .RS 4
155 Print out the ref name given on the command line by which each commit was reached\&.
158 \-\-[no\-]mailmap, \-\-[no\-]use\-mailmap
159 .RS 4
160 Use mailmap file to map author and committer names and email addresses to canonical real names and email addresses\&. See
161 \fBgit-shortlog\fR(1)\&.
164 \-\-full\-diff
165 .RS 4
166 Without this flag,
167 \fBgit log \-p <path>\&.\&.\&.\fR
168 shows commits that touch the specified paths, and diffs about the same specified paths\&. With this, the full diff is shown for commits that touch the specified paths; this means that "<path>\&..." limits only commits, and doesn\(cqt limit diff for those commits\&.
170 Note that this affects all diff\-based output types, e\&.g\&. those produced by
171 \fB\-\-stat\fR, etc\&.
174 \-\-log\-size
175 .RS 4
176 Include a line \(lqlog size <number>\(rq in the output for each commit, where <number> is the length of that commit\(cqs message in bytes\&. Intended to speed up tools that read log messages from
177 \fBgit log\fR
178 output by allowing them to allocate space in advance\&.
181 \-L<start>,<end>:<file>, \-L:<funcname>:<file>
182 .RS 4
183 Trace the evolution of the line range given by
184 \fI<start>,<end>\fR, or by the function name regex
185 \fI<funcname>\fR, within the
186 \fI<file>\fR\&. You may not give any pathspec limiters\&. This is currently limited to a walk starting from a single revision, i\&.e\&., you may only give zero or one positive revision arguments, and
187 \fI<start>\fR
189 \fI<end>\fR
191 \fI<funcname>\fR) must exist in the starting revision\&. You can specify this option more than once\&. Implies
192 \fB\-\-patch\fR\&. Patch output can be suppressed using
193 \fB\-\-no\-patch\fR, but other diff formats (namely
194 \fB\-\-raw\fR,
195 \fB\-\-numstat\fR,
196 \fB\-\-shortstat\fR,
197 \fB\-\-dirstat\fR,
198 \fB\-\-summary\fR,
199 \fB\-\-name\-only\fR,
200 \fB\-\-name\-status\fR,
201 \fB\-\-check\fR) are not currently implemented\&.
203 \fI<start>\fR
205 \fI<end>\fR
206 can take one of these forms:
208 .RS 4
209 .ie n \{\
210 \h'-04'\(bu\h'+03'\c
212 .el \{\
213 .sp -1
214 .IP \(bu 2.3
216 number
219 \fI<start>\fR
221 \fI<end>\fR
222 is a number, it specifies an absolute line number (lines count from 1)\&.
225 .RS 4
226 .ie n \{\
227 \h'-04'\(bu\h'+03'\c
229 .el \{\
230 .sp -1
231 .IP \(bu 2.3
233 \fB/regex/\fR
235 This form will use the first line matching the given POSIX regex\&. If
236 \fI<start>\fR
237 is a regex, it will search from the end of the previous
238 \fB\-L\fR
239 range, if any, otherwise from the start of file\&. If
240 \fI<start>\fR
242 \fB^/regex/\fR, it will search from the start of file\&. If
243 \fI<end>\fR
244 is a regex, it will search starting at the line given by
245 \fI<start>\fR\&.
248 .RS 4
249 .ie n \{\
250 \h'-04'\(bu\h'+03'\c
252 .el \{\
253 .sp -1
254 .IP \(bu 2.3
256 +offset or \-offset
258 This is only valid for
259 \fI<end>\fR
260 and will specify a number of lines before or after the line given by
261 \fI<start>\fR\&.
265 \fB:<funcname>\fR
266 is given in place of
267 \fI<start>\fR
269 \fI<end>\fR, it is a regular expression that denotes the range from the first funcname line that matches
270 \fI<funcname>\fR, up to the next funcname line\&.
271 \fB:<funcname>\fR
272 searches from the end of the previous
273 \fB\-L\fR
274 range, if any, otherwise from the start of file\&.
275 \fB^:<funcname>\fR
276 searches from the start of file\&. The function names are determined in the same way as
277 \fBgit diff\fR
278 works out patch hunk headers (see
279 \fIDefining a custom hunk\-header\fR
281 \fBgitattributes\fR(5))\&.
284 <revision\-range>
285 .RS 4
286 Show only commits in the specified revision range\&. When no <revision\-range> is specified, it defaults to
287 \fBHEAD\fR
288 (i\&.e\&. the whole history leading to the current commit)\&.
289 \fBorigin\&.\&.HEAD\fR
290 specifies all the commits reachable from the current commit (i\&.e\&.
291 \fBHEAD\fR), but not from
292 \fBorigin\fR\&. For a complete list of ways to spell <revision\-range>, see the
293 \fISpecifying Ranges\fR
294 section of
295 \fBgitrevisions\fR(7)\&.
298 [\-\-] <path>\&...
299 .RS 4
300 Show only commits that are enough to explain how the files that match the specified paths came to be\&. See
301 \fIHistory Simplification\fR
302 below for details and other simplification modes\&.
304 Paths may need to be prefixed with
305 \fB\-\-\fR
306 to separate them from options or the revision range, when confusion arises\&.
308 .SS "Commit Limiting"
310 Besides specifying a range of commits that should be listed using the special notations explained in the description, additional commit limiting may be applied\&.
312 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\&.
314 Note that these are applied before commit ordering and formatting options, such as \fB\-\-reverse\fR\&.
316 \-<number>, \-n <number>, \-\-max\-count=<number>
317 .RS 4
318 Limit the number of commits to output\&.
321 \-\-skip=<number>
322 .RS 4
323 Skip
324 \fInumber\fR
325 commits before starting to show the commit output\&.
328 \-\-since=<date>, \-\-after=<date>
329 .RS 4
330 Show commits more recent than a specific date\&.
333 \-\-since\-as\-filter=<date>
334 .RS 4
335 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\&.
338 \-\-until=<date>, \-\-before=<date>
339 .RS 4
340 Show commits older than a specific date\&.
343 \-\-author=<pattern>, \-\-committer=<pattern>
344 .RS 4
345 Limit the commits output to ones with author/committer header lines that match the specified pattern (regular expression)\&. With more than one
346 \fB\-\-author=<pattern>\fR, commits whose author matches any of the given patterns are chosen (similarly for multiple
347 \fB\-\-committer=<pattern>\fR)\&.
350 \-\-grep\-reflog=<pattern>
351 .RS 4
352 Limit the commits output to ones with reflog entries that match the specified pattern (regular expression)\&. With more than one
353 \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
354 \fB\-\-walk\-reflogs\fR
355 is in use\&.
358 \-\-grep=<pattern>
359 .RS 4
360 Limit the commits output to ones with log message that matches the specified pattern (regular expression)\&. With more than one
361 \fB\-\-grep=<pattern>\fR, commits whose message matches any of the given patterns are chosen (but see
362 \fB\-\-all\-match\fR)\&.
364 When
365 \fB\-\-notes\fR
366 is in effect, the message from the notes is matched as if it were part of the log message\&.
369 \-\-all\-match
370 .RS 4
371 Limit the commits output to ones that match all given
372 \fB\-\-grep\fR, instead of ones that match at least one\&.
375 \-\-invert\-grep
376 .RS 4
377 Limit the commits output to ones with log message that do not match the pattern specified with
378 \fB\-\-grep=<pattern>\fR\&.
381 \-i, \-\-regexp\-ignore\-case
382 .RS 4
383 Match the regular expression limiting patterns without regard to letter case\&.
386 \-\-basic\-regexp
387 .RS 4
388 Consider the limiting patterns to be basic regular expressions; this is the default\&.
391 \-E, \-\-extended\-regexp
392 .RS 4
393 Consider the limiting patterns to be extended regular expressions instead of the default basic regular expressions\&.
396 \-F, \-\-fixed\-strings
397 .RS 4
398 Consider the limiting patterns to be fixed strings (don\(cqt interpret pattern as a regular expression)\&.
401 \-P, \-\-perl\-regexp
402 .RS 4
403 Consider the limiting patterns to be Perl\-compatible regular expressions\&.
405 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\&.
408 \-\-remove\-empty
409 .RS 4
410 Stop when a given path disappears from the tree\&.
413 \-\-merges
414 .RS 4
415 Print only merge commits\&. This is exactly the same as
416 \fB\-\-min\-parents=2\fR\&.
419 \-\-no\-merges
420 .RS 4
421 Do not print commits with more than one parent\&. This is exactly the same as
422 \fB\-\-max\-parents=1\fR\&.
425 \-\-min\-parents=<number>, \-\-max\-parents=<number>, \-\-no\-min\-parents, \-\-no\-max\-parents
426 .RS 4
427 Show only commits which have at least (or at most) that many parent commits\&. In particular,
428 \fB\-\-max\-parents=1\fR
429 is the same as
430 \fB\-\-no\-merges\fR,
431 \fB\-\-min\-parents=2\fR
432 is the same as
433 \fB\-\-merges\fR\&.
434 \fB\-\-max\-parents=0\fR
435 gives all root commits and
436 \fB\-\-min\-parents=3\fR
437 all octopus merges\&.
439 \fB\-\-no\-min\-parents\fR
441 \fB\-\-no\-max\-parents\fR
442 reset these limits (to no limit) again\&. Equivalent forms are
443 \fB\-\-min\-parents=0\fR
444 (any commit has 0 or more parents) and
445 \fB\-\-max\-parents=\-1\fR
446 (negative numbers denote no upper limit)\&.
449 \-\-first\-parent
450 .RS 4
451 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\&.
453 This option also changes default diff format for merge commits to
454 \fBfirst\-parent\fR, see
455 \fB\-\-diff\-merges=first\-parent\fR
456 for details\&.
459 \-\-exclude\-first\-parent\-only
460 .RS 4
461 When finding commits to exclude (with a
462 \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\&.
465 \-\-not
466 .RS 4
467 Reverses the meaning of the
468 \fI^\fR
469 prefix (or lack thereof) for all following revision specifiers, up to the next
470 \fB\-\-not\fR\&.
473 \-\-all
474 .RS 4
475 Pretend as if all the refs in
476 \fBrefs/\fR, along with
477 \fBHEAD\fR, are listed on the command line as
478 \fI<commit>\fR\&.
481 \-\-branches[=<pattern>]
482 .RS 4
483 Pretend as if all the refs in
484 \fBrefs/heads\fR
485 are listed on the command line as
486 \fI<commit>\fR\&. If
487 \fI<pattern>\fR
488 is given, limit branches to ones matching given shell glob\&. If pattern lacks
489 \fI?\fR,
490 \fI*\fR, or
491 \fI[\fR,
492 \fI/*\fR
493 at the end is implied\&.
496 \-\-tags[=<pattern>]
497 .RS 4
498 Pretend as if all the refs in
499 \fBrefs/tags\fR
500 are listed on the command line as
501 \fI<commit>\fR\&. If
502 \fI<pattern>\fR
503 is given, limit tags to ones matching given shell glob\&. If pattern lacks
504 \fI?\fR,
505 \fI*\fR, or
506 \fI[\fR,
507 \fI/*\fR
508 at the end is implied\&.
511 \-\-remotes[=<pattern>]
512 .RS 4
513 Pretend as if all the refs in
514 \fBrefs/remotes\fR
515 are listed on the command line as
516 \fI<commit>\fR\&. If
517 \fI<pattern>\fR
518 is given, limit remote\-tracking branches to ones matching given shell glob\&. If pattern lacks
519 \fI?\fR,
520 \fI*\fR, or
521 \fI[\fR,
522 \fI/*\fR
523 at the end is implied\&.
526 \-\-glob=<glob\-pattern>
527 .RS 4
528 Pretend as if all the refs matching shell glob
529 \fI<glob\-pattern>\fR
530 are listed on the command line as
531 \fI<commit>\fR\&. Leading
532 \fIrefs/\fR, is automatically prepended if missing\&. If pattern lacks
533 \fI?\fR,
534 \fI*\fR, or
535 \fI[\fR,
536 \fI/*\fR
537 at the end is implied\&.
540 \-\-exclude=<glob\-pattern>
541 .RS 4
542 Do not include refs matching
543 \fI<glob\-pattern>\fR
544 that the next
545 \fB\-\-all\fR,
546 \fB\-\-branches\fR,
547 \fB\-\-tags\fR,
548 \fB\-\-remotes\fR, or
549 \fB\-\-glob\fR
550 would otherwise consider\&. Repetitions of this option accumulate exclusion patterns up to the next
551 \fB\-\-all\fR,
552 \fB\-\-branches\fR,
553 \fB\-\-tags\fR,
554 \fB\-\-remotes\fR, or
555 \fB\-\-glob\fR
556 option (other options or arguments do not clear accumulated patterns)\&.
558 The patterns given should not begin with
559 \fBrefs/heads\fR,
560 \fBrefs/tags\fR, or
561 \fBrefs/remotes\fR
562 when applied to
563 \fB\-\-branches\fR,
564 \fB\-\-tags\fR, or
565 \fB\-\-remotes\fR, respectively, and they must begin with
566 \fBrefs/\fR
567 when applied to
568 \fB\-\-glob\fR
570 \fB\-\-all\fR\&. If a trailing
571 \fI/*\fR
572 is intended, it must be given explicitly\&.
575 \-\-exclude\-hidden=[receive|uploadpack]
576 .RS 4
577 Do not include refs that would be hidden by
578 \fBgit\-receive\-pack\fR
580 \fBgit\-upload\-pack\fR
581 by consulting the appropriate
582 \fBreceive\&.hideRefs\fR
584 \fBuploadpack\&.hideRefs\fR
585 configuration along with
586 \fBtransfer\&.hideRefs\fR
587 (see
588 \fBgit-config\fR(1))\&. This option affects the next pseudo\-ref option
589 \fB\-\-all\fR
591 \fB\-\-glob\fR
592 and is cleared after processing them\&.
595 \-\-reflog
596 .RS 4
597 Pretend as if all objects mentioned by reflogs are listed on the command line as
598 \fB<commit>\fR\&.
601 \-\-alternate\-refs
602 .RS 4
603 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
604 \fBobjects/info/alternates\fR\&. The set of included objects may be modified by
605 \fBcore\&.alternateRefsCommand\fR, etc\&. See
606 \fBgit-config\fR(1)\&.
609 \-\-single\-worktree
610 .RS 4
611 By default, all working trees will be examined by the following options when there are more than one (see
612 \fBgit-worktree\fR(1)):
613 \fB\-\-all\fR,
614 \fB\-\-reflog\fR
616 \fB\-\-indexed\-objects\fR\&. This option forces them to examine the current working tree only\&.
619 \-\-ignore\-missing
620 .RS 4
621 Upon seeing an invalid object name in the input, pretend as if the bad input was not given\&.
624 \-\-bisect
625 .RS 4
626 Pretend as if the bad bisection ref
627 \fBrefs/bisect/bad\fR
628 was listed and as if it was followed by
629 \fB\-\-not\fR
630 and the good bisection refs
631 \fBrefs/bisect/good\-*\fR
632 on the command line\&.
635 \-\-stdin
636 .RS 4
637 In addition to the
638 \fI<commit>\fR
639 listed on the command line, read them from the standard input\&. If a
640 \fB\-\-\fR
641 separator is seen, stop reading commits and start reading paths to limit the result\&.
644 \-\-cherry\-mark
645 .RS 4
646 Like
647 \fB\-\-cherry\-pick\fR
648 (see below) but mark equivalent commits with
649 \fB=\fR
650 rather than omitting them, and inequivalent ones with
651 \fB+\fR\&.
654 \-\-cherry\-pick
655 .RS 4
656 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\&.
658 For example, if you have two branches,
659 \fBA\fR
661 \fBB\fR, a usual way to list all commits on only one side of them is with
662 \fB\-\-left\-right\fR
663 (see the example below in the description of the
664 \fB\-\-left\-right\fR
665 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\&.
668 \-\-left\-only, \-\-right\-only
669 .RS 4
670 List only commits on the respective side of a symmetric difference, i\&.e\&. only those which would be marked
671 \fB<\fR
672 resp\&.
673 \fB>\fR
675 \fB\-\-left\-right\fR\&.
677 For example,
678 \fB\-\-cherry\-pick \-\-right\-only A\&.\&.\&.B\fR
679 omits those commits from
680 \fBB\fR
681 which are in
682 \fBA\fR
683 or are patch\-equivalent to a commit in
684 \fBA\fR\&. In other words, this lists the
685 \fB+\fR
686 commits from
687 \fBgit cherry A B\fR\&. More precisely,
688 \fB\-\-cherry\-pick \-\-right\-only \-\-no\-merges\fR
689 gives the exact list\&.
692 \-\-cherry
693 .RS 4
694 A synonym for
695 \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
696 \fBgit log \-\-cherry upstream\&.\&.\&.mybranch\fR, similar to
697 \fBgit cherry upstream mybranch\fR\&.
700 \-g, \-\-walk\-reflogs
701 .RS 4
702 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,
703 \fI^commit\fR,
704 \fIcommit1\&.\&.commit2\fR, and
705 \fIcommit1\&.\&.\&.commit2\fR
706 notations cannot be used)\&.
708 With
709 \fB\-\-pretty\fR
710 format other than
711 \fBoneline\fR
713 \fBreference\fR
714 (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
715 \fBref@{Nth}\fR
716 (where
717 \fBNth\fR
718 is the reverse\-chronological index in the reflog) or as
719 \fBref@{timestamp}\fR
720 (with the timestamp for that entry), depending on a few rules:
722 .RS 4
723 .ie n \{\
724 \h'-04' 1.\h'+01'\c
726 .el \{\
727 .sp -1
728 .IP "  1." 4.2
730 If the starting point is specified as
731 \fBref@{Nth}\fR, show the index format\&.
734 .RS 4
735 .ie n \{\
736 \h'-04' 2.\h'+01'\c
738 .el \{\
739 .sp -1
740 .IP "  2." 4.2
742 If the starting point was specified as
743 \fBref@{now}\fR, show the timestamp format\&.
746 .RS 4
747 .ie n \{\
748 \h'-04' 3.\h'+01'\c
750 .el \{\
751 .sp -1
752 .IP "  3." 4.2
754 If neither was used, but
755 \fB\-\-date\fR
756 was given on the command line, show the timestamp in the format requested by
757 \fB\-\-date\fR\&.
760 .RS 4
761 .ie n \{\
762 \h'-04' 4.\h'+01'\c
764 .el \{\
765 .sp -1
766 .IP "  4." 4.2
768 Otherwise, show the index format\&.
771 Under
772 \fB\-\-pretty=oneline\fR, the commit message is prefixed with this information on the same line\&. This option cannot be combined with
773 \fB\-\-reverse\fR\&. See also
774 \fBgit-reflog\fR(1)\&.
776 Under
777 \fB\-\-pretty=reference\fR, this information will not be shown at all\&.
780 \-\-merge
781 .RS 4
782 After a failed merge, show refs that touch files having a conflict and don\(cqt exist on all heads to merge\&.
785 \-\-boundary
786 .RS 4
787 Output excluded boundary commits\&. Boundary commits are prefixed with
788 \fB\-\fR\&.
790 .SS "History Simplification"
792 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\&.
794 The following options select the commits to be shown:
796 <paths>
797 .RS 4
798 Commits modifying the given <paths> are selected\&.
801 \-\-simplify\-by\-decoration
802 .RS 4
803 Commits that are referred by some branch or tag are selected\&.
806 Note that extra commits can be shown to give a meaningful history\&.
808 The following options affect the way the simplification is performed:
810 Default mode
811 .RS 4
812 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)
815 \-\-show\-pulls
816 .RS 4
817 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\&.
820 \-\-full\-history
821 .RS 4
822 Same as the default mode, but does not prune some history\&.
825 \-\-dense
826 .RS 4
827 Only the selected commits are shown, plus some to have a meaningful history\&.
830 \-\-sparse
831 .RS 4
832 All commits in the simplified history are shown\&.
835 \-\-simplify\-merges
836 .RS 4
837 Additional option to
838 \fB\-\-full\-history\fR
839 to remove some needless merges from the resulting history, as there are no selected commits contributing to this merge\&.
842 \-\-ancestry\-path[=<commit>]
843 .RS 4
844 When given a range of commits to display (e\&.g\&.
845 \fIcommit1\&.\&.commit2\fR
847 \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
848 \fIcommit1\fR
849 (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\&.
852 A more detailed explanation follows\&.
854 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\&.)
856 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:
858 .if n \{\
859 .RS 4
862           \&.\-A\-\-\-M\-\-\-N\-\-\-O\-\-\-P\-\-\-Q
863          /     /   /   /   /   /
864         I     B   C   D   E   Y
865          \e   /   /   /   /   /
866           `\-\-\-\-\-\-\-\-\-\-\-\-\-\(aq   X
868 .if n \{\
873 The horizontal line of history A\-\-\-Q is taken to be the first parent of each merge\&. The commits are:
875 .RS 4
876 .ie n \{\
877 \h'-04'\(bu\h'+03'\c
879 .el \{\
880 .sp -1
881 .IP \(bu 2.3
883 \fBI\fR
884 is the initial commit, in which
885 \fBfoo\fR
886 exists with contents \(lqasdf\(rq, and a file
887 \fBquux\fR
888 exists with contents \(lqquux\(rq\&. Initial commits are compared to an empty tree, so
889 \fBI\fR
890 is !TREESAME\&.
893 .RS 4
894 .ie n \{\
895 \h'-04'\(bu\h'+03'\c
897 .el \{\
898 .sp -1
899 .IP \(bu 2.3
902 \fBA\fR,
903 \fBfoo\fR
904 contains just \(lqfoo\(rq\&.
907 .RS 4
908 .ie n \{\
909 \h'-04'\(bu\h'+03'\c
911 .el \{\
912 .sp -1
913 .IP \(bu 2.3
915 \fBB\fR
916 contains the same change as
917 \fBA\fR\&. Its merge
918 \fBM\fR
919 is trivial and hence TREESAME to all parents\&.
922 .RS 4
923 .ie n \{\
924 \h'-04'\(bu\h'+03'\c
926 .el \{\
927 .sp -1
928 .IP \(bu 2.3
930 \fBC\fR
931 does not change
932 \fBfoo\fR, but its merge
933 \fBN\fR
934 changes it to \(lqfoobar\(rq, so it is not TREESAME to any parent\&.
937 .RS 4
938 .ie n \{\
939 \h'-04'\(bu\h'+03'\c
941 .el \{\
942 .sp -1
943 .IP \(bu 2.3
945 \fBD\fR
946 sets
947 \fBfoo\fR
948 to \(lqbaz\(rq\&. Its merge
949 \fBO\fR
950 combines the strings from
951 \fBN\fR
953 \fBD\fR
954 to \(lqfoobarbaz\(rq; i\&.e\&., it is not TREESAME to any parent\&.
957 .RS 4
958 .ie n \{\
959 \h'-04'\(bu\h'+03'\c
961 .el \{\
962 .sp -1
963 .IP \(bu 2.3
965 \fBE\fR
966 changes
967 \fBquux\fR
968 to \(lqxyzzy\(rq, and its merge
969 \fBP\fR
970 combines the strings to \(lqquux xyzzy\(rq\&.
971 \fBP\fR
972 is TREESAME to
973 \fBO\fR, but not to
974 \fBE\fR\&.
977 .RS 4
978 .ie n \{\
979 \h'-04'\(bu\h'+03'\c
981 .el \{\
982 .sp -1
983 .IP \(bu 2.3
985 \fBX\fR
986 is an independent root commit that added a new file
987 \fBside\fR, and
988 \fBY\fR
989 modified it\&.
990 \fBY\fR
991 is TREESAME to
992 \fBX\fR\&. Its merge
993 \fBQ\fR
994 added
995 \fBside\fR
997 \fBP\fR, and
998 \fBQ\fR
999 is TREESAME to
1000 \fBP\fR, but not to
1001 \fBY\fR\&.
1004 \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\&.
1006 Default mode
1007 .RS 4
1008 Commits are included if they are not TREESAME to any parent (though this can be changed, see
1009 \fB\-\-sparse\fR
1010 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\&.
1012 This results in:
1014 .if n \{\
1015 .RS 4
1018           \&.\-A\-\-\-N\-\-\-O
1019          /     /   /
1020         I\-\-\-\-\-\-\-\-\-D
1022 .if n \{\
1026 Note how the rule to only follow the TREESAME parent, if one is available, removed
1027 \fBB\fR
1028 from consideration entirely\&.
1029 \fBC\fR
1030 was considered via
1031 \fBN\fR, but is TREESAME\&. Root commits are compared to an empty tree, so
1032 \fBI\fR
1033 is !TREESAME\&.
1035 Parent/child relations are only visible with
1036 \fB\-\-parents\fR, but that does not affect the commits selected in default mode, so we have shown the parent lines\&.
1039 \-\-full\-history without parent rewriting
1040 .RS 4
1041 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
1043 .if n \{\
1044 .RS 4
1047         I  A  B  N  D  O  P  Q
1049 .if n \{\
1053 \fBM\fR
1054 was excluded because it is TREESAME to both parents\&.
1055 \fBE\fR,
1056 \fBC\fR
1058 \fBB\fR
1059 were all walked, but only
1060 \fBB\fR
1061 was !TREESAME, so the others do not appear\&.
1063 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\&.
1066 \-\-full\-history with parent rewriting
1067 .RS 4
1068 Ordinary commits are only included if they are !TREESAME (though this can be changed, see
1069 \fB\-\-sparse\fR
1070 below)\&.
1072 Merges are always included\&. However, their parent list is rewritten: Along each parent, prune away commits that are not included themselves\&. This results in
1074 .if n \{\
1075 .RS 4
1078           \&.\-A\-\-\-M\-\-\-N\-\-\-O\-\-\-P\-\-\-Q
1079          /     /   /   /   /
1080         I     B   /   D   /
1081          \e   /   /   /   /
1082           `\-\-\-\-\-\-\-\-\-\-\-\-\-\(aq
1084 .if n \{\
1088 Compare to
1089 \fB\-\-full\-history\fR
1090 without rewriting above\&. Note that
1091 \fBE\fR
1092 was pruned away because it is TREESAME, but the parent list of P was rewritten to contain
1093 \fBE\fR\(aqs parent
1094 \fBI\fR\&. The same happened for
1095 \fBC\fR
1097 \fBN\fR, and
1098 \fBX\fR,
1099 \fBY\fR
1101 \fBQ\fR\&.
1104 In addition to the above settings, you can change whether TREESAME affects inclusion:
1106 \-\-dense
1107 .RS 4
1108 Commits that are walked are included if they are not TREESAME to any parent\&.
1111 \-\-sparse
1112 .RS 4
1113 All commits that are walked are included\&.
1115 Note that without
1116 \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\&.
1119 \-\-simplify\-merges
1120 .RS 4
1121 First, build a history graph in the same way that
1122 \fB\-\-full\-history\fR
1123 with parent rewriting does (see above)\&.
1125 Then simplify each commit
1126 \fBC\fR
1127 to its replacement
1128 \fBC\(aq\fR
1129 in the final history according to the following rules:
1131 .RS 4
1132 .ie n \{\
1133 \h'-04'\(bu\h'+03'\c
1135 .el \{\
1136 .sp -1
1137 .IP \(bu 2.3
1140 \fBC\(aq\fR
1142 \fBC\fR\&.
1145 .RS 4
1146 .ie n \{\
1147 \h'-04'\(bu\h'+03'\c
1149 .el \{\
1150 .sp -1
1151 .IP \(bu 2.3
1153 Replace each parent
1154 \fBP\fR
1156 \fBC\(aq\fR
1157 with its simplification
1158 \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\&.
1161 .RS 4
1162 .ie n \{\
1163 \h'-04'\(bu\h'+03'\c
1165 .el \{\
1166 .sp -1
1167 .IP \(bu 2.3
1169 If after this parent rewriting,
1170 \fBC\(aq\fR
1171 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\&.
1174 The effect of this is best shown by way of comparing to
1175 \fB\-\-full\-history\fR
1176 with parent rewriting\&. The example turns into:
1178 .if n \{\
1179 .RS 4
1182           \&.\-A\-\-\-M\-\-\-N\-\-\-O
1183          /     /       /
1184         I     B       D
1185          \e   /       /
1186           `\-\-\-\-\-\-\-\-\-\(aq
1188 .if n \{\
1192 Note the major differences in
1193 \fBN\fR,
1194 \fBP\fR, and
1195 \fBQ\fR
1196 over
1197 \fB\-\-full\-history\fR:
1199 .RS 4
1200 .ie n \{\
1201 \h'-04'\(bu\h'+03'\c
1203 .el \{\
1204 .sp -1
1205 .IP \(bu 2.3
1207 \fBN\fR\(aqs parent list had
1208 \fBI\fR
1209 removed, because it is an ancestor of the other parent
1210 \fBM\fR\&. Still,
1211 \fBN\fR
1212 remained because it is !TREESAME\&.
1215 .RS 4
1216 .ie n \{\
1217 \h'-04'\(bu\h'+03'\c
1219 .el \{\
1220 .sp -1
1221 .IP \(bu 2.3
1223 \fBP\fR\(aqs parent list similarly had
1224 \fBI\fR
1225 removed\&.
1226 \fBP\fR
1227 was then removed completely, because it had one parent and is TREESAME\&.
1230 .RS 4
1231 .ie n \{\
1232 \h'-04'\(bu\h'+03'\c
1234 .el \{\
1235 .sp -1
1236 .IP \(bu 2.3
1238 \fBQ\fR\(aqs parent list had
1239 \fBY\fR
1240 simplified to
1241 \fBX\fR\&.
1242 \fBX\fR
1243 was then removed, because it was a TREESAME root\&.
1244 \fBQ\fR
1245 was then removed completely, because it had one parent and is TREESAME\&.
1249 There is another simplification mode available:
1251 \-\-ancestry\-path[=<commit>]
1252 .RS 4
1253 Limit the displayed commits to those which are an ancestor of <commit>, or which are a descendant of <commit>, or are <commit> itself\&.
1255 As an example use case, consider the following commit history:
1257 .if n \{\
1258 .RS 4
1261             D\-\-\-E\-\-\-\-\-\-\-F
1262            /     \e       \e
1263           B\-\-\-C\-\-\-G\-\-\-H\-\-\-I\-\-\-J
1264          /                     \e
1265         A\-\-\-\-\-\-\-K\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-L\-\-M
1267 .if n \{\
1271 A regular
1272 \fID\&.\&.M\fR
1273 computes the set of commits that are ancestors of
1274 \fBM\fR, but excludes the ones that are ancestors of
1275 \fBD\fR\&. This is useful to see what happened to the history leading to
1276 \fBM\fR
1277 since
1278 \fBD\fR, in the sense that \(lqwhat does
1279 \fBM\fR
1280 have that did not exist in
1281 \fBD\fR\(rq\&. The result in this example would be all the commits, except
1282 \fBA\fR
1284 \fBB\fR
1285 (and
1286 \fBD\fR
1287 itself, of course)\&.
1289 When we want to find out what commits in
1290 \fBM\fR
1291 are contaminated with the bug introduced by
1292 \fBD\fR
1293 and need fixing, however, we might want to view only the subset of
1294 \fID\&.\&.M\fR
1295 that are actually descendants of
1296 \fBD\fR, i\&.e\&. excluding
1297 \fBC\fR
1299 \fBK\fR\&. This is exactly what the
1300 \fB\-\-ancestry\-path\fR
1301 option does\&. Applied to the
1302 \fID\&.\&.M\fR
1303 range, it results in:
1305 .if n \{\
1306 .RS 4
1309                 E\-\-\-\-\-\-\-F
1310                  \e       \e
1311                   G\-\-\-H\-\-\-I\-\-\-J
1312                                \e
1313                                 L\-\-M
1315 .if n \{\
1319 We can also use
1320 \fB\-\-ancestry\-path=D\fR
1321 instead of
1322 \fB\-\-ancestry\-path\fR
1323 which means the same thing when applied to the
1324 \fID\&.\&.M\fR
1325 range but is just more explicit\&.
1327 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
1328 \fBD\&.\&.M\fR
1329 which contain that topic in their ancestry path\&. So, using
1330 \fB\-\-ancestry\-path=H D\&.\&.M\fR
1331 for example would result in:
1333 .if n \{\
1334 .RS 4
1337                 E
1338                  \e
1339                   G\-\-\-H\-\-\-I\-\-\-J
1340                                \e
1341                                 L\-\-M
1343 .if n \{\
1347 Whereas
1348 \fB\-\-ancestry\-path=K D\&.\&.M\fR
1349 would result in
1351 .if n \{\
1352 .RS 4
1355                 K\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-L\-\-M
1357 .if n \{\
1363 Before discussing another option, \fB\-\-show\-pulls\fR, we need to create a new example history\&.
1365 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:
1367 .if n \{\
1368 .RS 4
1371           \&.\-A\-\-\-M\-\-\-\-\-C\-\-N\-\-\-O\-\-\-P
1372          /     / \e  \e  \e/   /   /
1373         I     B   \e  R\-\(aq`\-Z\(aq   /
1374          \e   /     \e/         /
1375           \e /      /\e        /
1376            `\-\-\-X\-\-\(aq  `\-\-\-Y\-\-\(aq
1378 .if n \{\
1383 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\&.
1385 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:
1387 .if n \{\
1388 .RS 4
1391         I\-\-\-X
1393 .if n \{\
1398 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:
1400 .if n \{\
1401 .RS 4
1404           \&.\-A\-\-\-M\-\-\-\-\-\-\-\-N\-\-\-O\-\-\-P
1405          /     / \e  \e  \e/   /   /
1406         I     B   \e  R\-\(aq`\-\-\(aq   /
1407          \e   /     \e/         /
1408           \e /      /\e        /
1409            `\-\-\-X\-\-\(aq  `\-\-\-\-\-\-\(aq
1411 .if n \{\
1416 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\&.
1418 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:
1420 .if n \{\
1421 .RS 4
1424           \&.\-A\-\-\-M\-\-\&.
1425          /     /    \e
1426         I     B      R
1427          \e   /      /
1428           \e /      /
1429            `\-\-\-X\-\-\(aq
1431 .if n \{\
1436 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\&.
1438 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\&.
1440 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\&.
1442 \-\-show\-pulls
1443 .RS 4
1444 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\&.
1446 When a merge commit is included by
1447 \fB\-\-show\-pulls\fR, the merge is treated as if it "pulled" the change from another branch\&. When using
1448 \fB\-\-show\-pulls\fR
1449 on this example (and no other options) the resulting graph is:
1451 .if n \{\
1452 .RS 4
1455         I\-\-\-X\-\-\-R\-\-\-N
1457 .if n \{\
1461 Here, the merge commits
1462 \fBR\fR
1464 \fBN\fR
1465 are included because they pulled the commits
1466 \fBX\fR
1468 \fBR\fR
1469 into the base branch, respectively\&. These merges are the reason the commits
1470 \fBA\fR
1472 \fBB\fR
1473 do not appear in the default history\&.
1475 When
1476 \fB\-\-show\-pulls\fR
1477 is paired with
1478 \fB\-\-simplify\-merges\fR, the graph includes all of the necessary information:
1480 .if n \{\
1481 .RS 4
1484           \&.\-A\-\-\-M\-\-\&.   N
1485          /     /    \e /
1486         I     B      R
1487          \e   /      /
1488           \e /      /
1489            `\-\-\-X\-\-\(aq
1491 .if n \{\
1495 Notice that since
1496 \fBM\fR
1497 is reachable from
1498 \fBR\fR, the edge from
1499 \fBN\fR
1501 \fBM\fR
1502 was simplified away\&. However,
1503 \fBN\fR
1504 still appears in the history as an important commit because it "pulled" the change
1505 \fBR\fR
1506 into the main branch\&.
1509 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)\&.
1510 .SS "Commit Ordering"
1512 By default, the commits are shown in reverse chronological order\&.
1514 \-\-date\-order
1515 .RS 4
1516 Show no parents before all of its children are shown, but otherwise show commits in the commit timestamp order\&.
1519 \-\-author\-date\-order
1520 .RS 4
1521 Show no parents before all of its children are shown, but otherwise show commits in the author timestamp order\&.
1524 \-\-topo\-order
1525 .RS 4
1526 Show no parents before all of its children are shown, and avoid showing commits on multiple lines of history intermixed\&.
1528 For example, in a commit history like this:
1530 .if n \{\
1531 .RS 4
1534     \-\-\-1\-\-\-\-2\-\-\-\-4\-\-\-\-7
1535         \e              \e
1536          3\-\-\-\-5\-\-\-\-6\-\-\-\-8\-\-\-
1538 .if n \{\
1542 where the numbers denote the order of commit timestamps,
1543 \fBgit rev\-list\fR
1544 and friends with
1545 \fB\-\-date\-order\fR
1546 show the commits in the timestamp order: 8 7 6 5 4 3 2 1\&.
1548 With
1549 \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\&.
1552 \-\-reverse
1553 .RS 4
1554 Output the commits chosen to be shown (see Commit Limiting section above) in reverse order\&. Cannot be combined with
1555 \fB\-\-walk\-reflogs\fR\&.
1557 .SS "Object Traversal"
1559 These options are mostly targeted for packing of Git repositories\&.
1561 \-\-no\-walk[=(sorted|unsorted)]
1562 .RS 4
1563 Only show the given commits, but do not traverse their ancestors\&. This has no effect if a range is specified\&. If the argument
1564 \fBunsorted\fR
1565 is given, the commits are shown in the order they were given on the command line\&. Otherwise (if
1566 \fBsorted\fR
1567 or no argument was given), the commits are shown in reverse chronological order by commit time\&. Cannot be combined with
1568 \fB\-\-graph\fR\&.
1571 \-\-do\-walk
1572 .RS 4
1573 Overrides a previous
1574 \fB\-\-no\-walk\fR\&.
1576 .SS "Commit Formatting"
1578 \-\-pretty[=<format>], \-\-format=<format>
1579 .RS 4
1580 Pretty\-print the contents of the commit logs in a given format, where
1581 \fI<format>\fR
1582 can be one of
1583 \fIoneline\fR,
1584 \fIshort\fR,
1585 \fImedium\fR,
1586 \fIfull\fR,
1587 \fIfuller\fR,
1588 \fIreference\fR,
1589 \fIemail\fR,
1590 \fIraw\fR,
1591 \fIformat:<string>\fR
1593 \fItformat:<string>\fR\&. When
1594 \fI<format>\fR
1595 is none of the above, and has
1596 \fI%placeholder\fR
1597 in it, it acts as if
1598 \fI\-\-pretty=tformat:<format>\fR
1599 were given\&.
1601 See the "PRETTY FORMATS" section for some additional details for each format\&. When
1602 \fI=<format>\fR
1603 part is omitted, it defaults to
1604 \fImedium\fR\&.
1606 Note: you can specify the default pretty format in the repository configuration (see
1607 \fBgit-config\fR(1))\&.
1610 \-\-abbrev\-commit
1611 .RS 4
1612 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\&.
1614 This should make "\-\-pretty=oneline" a whole lot more readable for people using 80\-column terminals\&.
1617 \-\-no\-abbrev\-commit
1618 .RS 4
1619 Show the full 40\-byte hexadecimal commit object name\&. This negates
1620 \fB\-\-abbrev\-commit\fR, either explicit or implied by other options such as "\-\-oneline"\&. It also overrides the
1621 \fBlog\&.abbrevCommit\fR
1622 variable\&.
1625 \-\-oneline
1626 .RS 4
1627 This is a shorthand for "\-\-pretty=oneline \-\-abbrev\-commit" used together\&.
1630 \-\-encoding=<encoding>
1631 .RS 4
1632 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
1633 \fBX\fR
1634 and we are outputting in
1635 \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\&.
1638 \-\-expand\-tabs=<n>, \-\-expand\-tabs, \-\-no\-expand\-tabs
1639 .RS 4
1640 Perform a tab expansion (replace each tab with enough spaces to fill to the next display column that is multiple of
1641 \fI<n>\fR) in the log message before showing it in the output\&.
1642 \fB\-\-expand\-tabs\fR
1643 is a short\-hand for
1644 \fB\-\-expand\-tabs=8\fR, and
1645 \fB\-\-no\-expand\-tabs\fR
1646 is a short\-hand for
1647 \fB\-\-expand\-tabs=0\fR, which disables tab expansion\&.
1649 By default, tabs are expanded in pretty formats that indent the log message by 4 spaces (i\&.e\&.
1650 \fImedium\fR, which is the default,
1651 \fIfull\fR, and
1652 \fIfuller\fR)\&.
1655 \-\-notes[=<ref>]
1656 .RS 4
1657 Show the notes (see
1658 \fBgit-notes\fR(1)) that annotate the commit, when showing the commit log message\&. This is the default for
1659 \fBgit log\fR,
1660 \fBgit show\fR
1662 \fBgit whatchanged\fR
1663 commands when there is no
1664 \fB\-\-pretty\fR,
1665 \fB\-\-format\fR, or
1666 \fB\-\-oneline\fR
1667 option given on the command line\&.
1669 By default, the notes shown are from the notes refs listed in the
1670 \fBcore\&.notesRef\fR
1672 \fBnotes\&.displayRef\fR
1673 variables (or corresponding environment overrides)\&. See
1674 \fBgit-config\fR(1)
1675 for more details\&.
1677 With an optional
1678 \fI<ref>\fR
1679 argument, use the ref to find the notes to display\&. The ref can specify the full refname when it begins with
1680 \fBrefs/notes/\fR; when it begins with
1681 \fBnotes/\fR,
1682 \fBrefs/\fR
1683 and otherwise
1684 \fBrefs/notes/\fR
1685 is prefixed to form a full name of the ref\&.
1687 Multiple \-\-notes options can be combined to control which notes are being displayed\&. Examples: "\-\-notes=foo" will show only notes from "refs/notes/foo"; "\-\-notes=foo \-\-notes" will show both notes from "refs/notes/foo" and from the default notes ref(s)\&.
1690 \-\-no\-notes
1691 .RS 4
1692 Do not show notes\&. This negates the above
1693 \fB\-\-notes\fR
1694 option, by resetting the list of notes refs from which notes are shown\&. Options are parsed in the order given on the command line, so e\&.g\&. "\-\-notes \-\-notes=foo \-\-no\-notes \-\-notes=bar" will only show notes from "refs/notes/bar"\&.
1697 \-\-show\-notes[=<ref>], \-\-[no\-]standard\-notes
1698 .RS 4
1699 These options are deprecated\&. Use the above \-\-notes/\-\-no\-notes options instead\&.
1702 \-\-show\-signature
1703 .RS 4
1704 Check the validity of a signed commit object by passing the signature to
1705 \fBgpg \-\-verify\fR
1706 and show the output\&.
1709 \-\-relative\-date
1710 .RS 4
1711 Synonym for
1712 \fB\-\-date=relative\fR\&.
1715 \-\-date=<format>
1716 .RS 4
1717 Only takes effect for dates shown in human\-readable format, such as when using
1718 \fB\-\-pretty\fR\&.
1719 \fBlog\&.date\fR
1720 config variable sets a default value for the log command\(cqs
1721 \fB\-\-date\fR
1722 option\&. By default, dates are shown in the original time zone (either committer\(cqs or author\(cqs)\&. If
1723 \fB\-local\fR
1724 is appended to the format (e\&.g\&.,
1725 \fBiso\-local\fR), the user\(cqs local time zone is used instead\&.
1727 \fB\-\-date=relative\fR
1728 shows dates relative to the current time, e\&.g\&. \(lq2 hours ago\(rq\&. The
1729 \fB\-local\fR
1730 option has no effect for
1731 \fB\-\-date=relative\fR\&.
1733 \fB\-\-date=local\fR
1734 is an alias for
1735 \fB\-\-date=default\-local\fR\&.
1737 \fB\-\-date=iso\fR
1739 \fB\-\-date=iso8601\fR) shows timestamps in a ISO 8601\-like format\&. The differences to the strict ISO 8601 format are:
1741 .RS 4
1742 .ie n \{\
1743 \h'-04'\(bu\h'+03'\c
1745 .el \{\
1746 .sp -1
1747 .IP \(bu 2.3
1749 a space instead of the
1750 \fBT\fR
1751 date/time delimiter
1754 .RS 4
1755 .ie n \{\
1756 \h'-04'\(bu\h'+03'\c
1758 .el \{\
1759 .sp -1
1760 .IP \(bu 2.3
1762 a space between time and time zone
1765 .RS 4
1766 .ie n \{\
1767 \h'-04'\(bu\h'+03'\c
1769 .el \{\
1770 .sp -1
1771 .IP \(bu 2.3
1773 no colon between hours and minutes of the time zone
1776 \fB\-\-date=iso\-strict\fR
1778 \fB\-\-date=iso8601\-strict\fR) shows timestamps in strict ISO 8601 format\&.
1780 \fB\-\-date=rfc\fR
1782 \fB\-\-date=rfc2822\fR) shows timestamps in RFC 2822 format, often found in email messages\&.
1784 \fB\-\-date=short\fR
1785 shows only the date, but not the time, in
1786 \fBYYYY\-MM\-DD\fR
1787 format\&.
1789 \fB\-\-date=raw\fR
1790 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
1791 \fB+\fR
1793 \fB\-\fR
1794 with four digits; the first two are hours, and the second two are minutes)\&. I\&.e\&., as if the timestamp were formatted with
1795 \fBstrftime("%s %z")\fR)\&. Note that the
1796 \fB\-local\fR
1797 option does not affect the seconds\-since\-epoch value (which is always measured in UTC), but does switch the accompanying timezone value\&.
1799 \fB\-\-date=human\fR
1800 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\&.
1802 \fB\-\-date=unix\fR
1803 shows the date as a Unix epoch timestamp (seconds since 1970)\&. As with
1804 \fB\-\-raw\fR, this is always in UTC and therefore
1805 \fB\-local\fR
1806 has no effect\&.
1808 \fB\-\-date=format:\&.\&.\&.\fR
1809 feeds the format
1810 \fB\&.\&.\&.\fR
1811 to your system
1812 \fBstrftime\fR, except for %s, %z, and %Z, which are handled internally\&. Use
1813 \fB\-\-date=format:%c\fR
1814 to show the date in your system locale\(cqs preferred format\&. See the
1815 \fBstrftime\fR
1816 manual for a complete list of format placeholders\&. When using
1817 \fB\-local\fR, the correct syntax is
1818 \fB\-\-date=format\-local:\&.\&.\&.\fR\&.
1820 \fB\-\-date=default\fR
1821 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\&.
1822 \fBThu Jan 1 00:00:00 1970 +0000\fR\&.
1825 \-\-parents
1826 .RS 4
1827 Print also the parents of the commit (in the form "commit parent\&...")\&. Also enables parent rewriting, see
1828 \fIHistory Simplification\fR
1829 above\&.
1832 \-\-children
1833 .RS 4
1834 Print also the children of the commit (in the form "commit child\&...")\&. Also enables parent rewriting, see
1835 \fIHistory Simplification\fR
1836 above\&.
1839 \-\-left\-right
1840 .RS 4
1841 Mark which side of a symmetric difference a commit is reachable from\&. Commits from the left side are prefixed with
1842 \fB<\fR
1843 and those from the right with
1844 \fB>\fR\&. If combined with
1845 \fB\-\-boundary\fR, those commits are prefixed with
1846 \fB\-\fR\&.
1848 For example, if you have this topology:
1850 .if n \{\
1851 .RS 4
1854              y\-\-\-b\-\-\-b  branch B
1855             / \e /
1856            /   \&.
1857           /   / \e
1858          o\-\-\-x\-\-\-a\-\-\-a  branch A
1860 .if n \{\
1864 you would get an output like this:
1866 .if n \{\
1867 .RS 4
1870         $ git rev\-list \-\-left\-right \-\-boundary \-\-pretty=oneline A\&.\&.\&.B
1872         >bbbbbbb\&.\&.\&. 3rd on b
1873         >bbbbbbb\&.\&.\&. 2nd on b
1874         <aaaaaaa\&.\&.\&. 3rd on a
1875         <aaaaaaa\&.\&.\&. 2nd on a
1876         \-yyyyyyy\&.\&.\&. 1st on b
1877         \-xxxxxxx\&.\&.\&. 1st on a
1879 .if n \{\
1885 \-\-graph
1886 .RS 4
1887 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
1888 \fB\-\-no\-walk\fR\&.
1890 This enables parent rewriting, see
1891 \fIHistory Simplification\fR
1892 above\&.
1894 This implies the
1895 \fB\-\-topo\-order\fR
1896 option by default, but the
1897 \fB\-\-date\-order\fR
1898 option may also be specified\&.
1901 \-\-show\-linear\-break[=<barrier>]
1902 .RS 4
1903 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
1904 \fB<barrier>\fR
1905 is specified, it is the string that will be shown instead of the default one\&.
1907 .SH "PRETTY FORMATS"
1909 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\&.
1911 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:
1913 .RS 4
1914 .ie n \{\
1915 \h'-04'\(bu\h'+03'\c
1917 .el \{\
1918 .sp -1
1919 .IP \(bu 2.3
1921 \fIoneline\fR
1923 .if n \{\
1924 .RS 4
1927 <hash> <title\-line>
1929 .if n \{\
1933 This is designed to be as compact as possible\&.
1936 .RS 4
1937 .ie n \{\
1938 \h'-04'\(bu\h'+03'\c
1940 .el \{\
1941 .sp -1
1942 .IP \(bu 2.3
1944 \fIshort\fR
1946 .if n \{\
1947 .RS 4
1950 commit <hash>
1951 Author: <author>
1953 .if n \{\
1957 .if n \{\
1958 .RS 4
1961 <title\-line>
1963 .if n \{\
1968 .RS 4
1969 .ie n \{\
1970 \h'-04'\(bu\h'+03'\c
1972 .el \{\
1973 .sp -1
1974 .IP \(bu 2.3
1976 \fImedium\fR
1978 .if n \{\
1979 .RS 4
1982 commit <hash>
1983 Author: <author>
1984 Date:   <author\-date>
1986 .if n \{\
1990 .if n \{\
1991 .RS 4
1994 <title\-line>
1996 .if n \{\
2000 .if n \{\
2001 .RS 4
2004 <full\-commit\-message>
2006 .if n \{\
2011 .RS 4
2012 .ie n \{\
2013 \h'-04'\(bu\h'+03'\c
2015 .el \{\
2016 .sp -1
2017 .IP \(bu 2.3
2019 \fIfull\fR
2021 .if n \{\
2022 .RS 4
2025 commit <hash>
2026 Author: <author>
2027 Commit: <committer>
2029 .if n \{\
2033 .if n \{\
2034 .RS 4
2037 <title\-line>
2039 .if n \{\
2043 .if n \{\
2044 .RS 4
2047 <full\-commit\-message>
2049 .if n \{\
2054 .RS 4
2055 .ie n \{\
2056 \h'-04'\(bu\h'+03'\c
2058 .el \{\
2059 .sp -1
2060 .IP \(bu 2.3
2062 \fIfuller\fR
2064 .if n \{\
2065 .RS 4
2068 commit <hash>
2069 Author:     <author>
2070 AuthorDate: <author\-date>
2071 Commit:     <committer>
2072 CommitDate: <committer\-date>
2074 .if n \{\
2078 .if n \{\
2079 .RS 4
2082 <title\-line>
2084 .if n \{\
2088 .if n \{\
2089 .RS 4
2092 <full\-commit\-message>
2094 .if n \{\
2099 .RS 4
2100 .ie n \{\
2101 \h'-04'\(bu\h'+03'\c
2103 .el \{\
2104 .sp -1
2105 .IP \(bu 2.3
2107 \fIreference\fR
2109 .if n \{\
2110 .RS 4
2113 <abbrev\-hash> (<title\-line>, <short\-author\-date>)
2115 .if n \{\
2119 This format is used to refer to another commit in a commit message and is the same as
2120 \fB\-\-pretty=\(aqformat:%C(auto)%h (%s, %ad)\(aq\fR\&. By default, the date is formatted with
2121 \fB\-\-date=short\fR
2122 unless another
2123 \fB\-\-date\fR
2124 option is explicitly specified\&. As with any
2125 \fBformat:\fR
2126 with format placeholders, its output is not affected by other options like
2127 \fB\-\-decorate\fR
2129 \fB\-\-walk\-reflogs\fR\&.
2132 .RS 4
2133 .ie n \{\
2134 \h'-04'\(bu\h'+03'\c
2136 .el \{\
2137 .sp -1
2138 .IP \(bu 2.3
2140 \fIemail\fR
2142 .if n \{\
2143 .RS 4
2146 From <hash> <date>
2147 From: <author>
2148 Date: <author\-date>
2149 Subject: [PATCH] <title\-line>
2151 .if n \{\
2155 .if n \{\
2156 .RS 4
2159 <full\-commit\-message>
2161 .if n \{\
2166 .RS 4
2167 .ie n \{\
2168 \h'-04'\(bu\h'+03'\c
2170 .el \{\
2171 .sp -1
2172 .IP \(bu 2.3
2174 \fImboxrd\fR
2176 Like
2177 \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\&.
2180 .RS 4
2181 .ie n \{\
2182 \h'-04'\(bu\h'+03'\c
2184 .el \{\
2185 .sp -1
2186 .IP \(bu 2.3
2188 \fIraw\fR
2191 \fIraw\fR
2192 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
2193 \fIparents\fR
2194 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
2195 \fBgit log \-\-raw\fR\&. To get full object names in a raw diff format, use
2196 \fB\-\-no\-abbrev\fR\&.
2199 .RS 4
2200 .ie n \{\
2201 \h'-04'\(bu\h'+03'\c
2203 .el \{\
2204 .sp -1
2205 .IP \(bu 2.3
2207 \fIformat:<format\-string>\fR
2210 \fIformat:<format\-string>\fR
2211 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
2212 \fI%n\fR
2213 instead of
2214 \fI\en\fR\&.
2216 E\&.g,
2217 \fIformat:"The author of %h was %an, %ar%nThe title was >>%s<<%n"\fR
2218 would show something like this:
2220 .if n \{\
2221 .RS 4
2224 The author of fe6e0ee was Junio C Hamano, 23 hours ago
2225 The title was >>t4119: test autocomputing \-p<n> for traditional diff input\&.<<
2227 .if n \{\
2231 The placeholders are:
2233 .RS 4
2234 .ie n \{\
2235 \h'-04'\(bu\h'+03'\c
2237 .el \{\
2238 .sp -1
2239 .IP \(bu 2.3
2241 Placeholders that expand to a single literal character:
2243 \fI%n\fR
2244 .RS 4
2245 newline
2248 \fI%%\fR
2249 .RS 4
2250 a raw
2251 \fI%\fR
2254 \fI%x00\fR
2255 .RS 4
2256 print a byte from a hex code
2260 .RS 4
2261 .ie n \{\
2262 \h'-04'\(bu\h'+03'\c
2264 .el \{\
2265 .sp -1
2266 .IP \(bu 2.3
2268 Placeholders that affect formatting of later placeholders:
2270 \fI%Cred\fR
2271 .RS 4
2272 switch color to red
2275 \fI%Cgreen\fR
2276 .RS 4
2277 switch color to green
2280 \fI%Cblue\fR
2281 .RS 4
2282 switch color to blue
2285 \fI%Creset\fR
2286 .RS 4
2287 reset color
2290 \fI%C(\&...)\fR
2291 .RS 4
2292 color specification, as described under Values in the "CONFIGURATION FILE" section of
2293 \fBgit-config\fR(1)\&. By default, colors are shown only when enabled for log output (by
2294 \fBcolor\&.diff\fR,
2295 \fBcolor\&.ui\fR, or
2296 \fB\-\-color\fR, and respecting the
2297 \fBauto\fR
2298 settings of the former if we are going to a terminal)\&.
2299 \fB%C(auto,\&.\&.\&.)\fR
2300 is accepted as a historical synonym for the default (e\&.g\&.,
2301 \fB%C(auto,red)\fR)\&. Specifying
2302 \fB%C(always,\&.\&.\&.)\fR
2303 will show the colors even when color is not otherwise enabled (though consider just using
2304 \fB\-\-color=always\fR
2305 to enable color for the whole output, including this format and anything else git might color)\&.
2306 \fBauto\fR
2307 alone (i\&.e\&.
2308 \fB%C(auto)\fR) will turn on auto coloring on the next placeholders until the color is switched again\&.
2311 \fI%m\fR
2312 .RS 4
2313 left (\fB<\fR), right (\fB>\fR) or boundary (\fB\-\fR) mark
2316 \fI%w([<w>[,<i1>[,<i2>]]])\fR
2317 .RS 4
2318 switch line wrapping, like the \-w option of
2319 \fBgit-shortlog\fR(1)\&.
2322 \fI%<( <N> [,trunc|ltrunc|mtrunc])\fR
2323 .RS 4
2324 make the next placeholder take at least N column widths, padding spaces on the right if necessary\&. Optionally truncate (with ellipsis
2325 \fI\&.\&.\fR) at the left (ltrunc)
2326 \fB\&.\&.ft\fR, the middle (mtrunc)
2327 \fBmi\&.\&.le\fR, or the end (trunc)
2328 \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\&.
2331 \fI%<|( <M> )\fR
2332 .RS 4
2333 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\&.
2336 \fI%>( <N> )\fR, \fI%>|( <M> )\fR
2337 .RS 4
2338 similar to
2339 \fI%<( <N> )\fR,
2340 \fI%<|( <M> )\fR
2341 respectively, but padding spaces on the left
2344 \fI%>>( <N> )\fR, \fI%>>|( <M> )\fR
2345 .RS 4
2346 similar to
2347 \fI%>( <N> )\fR,
2348 \fI%>|( <M> )\fR
2349 respectively, except that if the next placeholder takes more spaces than given and there are spaces on its left, use those spaces
2352 \fI%><( <N> )\fR, \fI%><|( <M> )\fR
2353 .RS 4
2354 similar to
2355 \fI%<( <N> )\fR,
2356 \fI%<|( <M> )\fR
2357 respectively, but padding both sides (i\&.e\&. the text is centered)
2361 .RS 4
2362 .ie n \{\
2363 \h'-04'\(bu\h'+03'\c
2365 .el \{\
2366 .sp -1
2367 .IP \(bu 2.3
2369 Placeholders that expand to information extracted from the commit:
2371 \fI%H\fR
2372 .RS 4
2373 commit hash
2376 \fI%h\fR
2377 .RS 4
2378 abbreviated commit hash
2381 \fI%T\fR
2382 .RS 4
2383 tree hash
2386 \fI%t\fR
2387 .RS 4
2388 abbreviated tree hash
2391 \fI%P\fR
2392 .RS 4
2393 parent hashes
2396 \fI%p\fR
2397 .RS 4
2398 abbreviated parent hashes
2401 \fI%an\fR
2402 .RS 4
2403 author name
2406 \fI%aN\fR
2407 .RS 4
2408 author name (respecting \&.mailmap, see
2409 \fBgit-shortlog\fR(1)
2411 \fBgit-blame\fR(1))
2414 \fI%ae\fR
2415 .RS 4
2416 author email
2419 \fI%aE\fR
2420 .RS 4
2421 author email (respecting \&.mailmap, see
2422 \fBgit-shortlog\fR(1)
2424 \fBgit-blame\fR(1))
2427 \fI%al\fR
2428 .RS 4
2429 author email local\-part (the part before the
2430 \fI@\fR
2431 sign)
2434 \fI%aL\fR
2435 .RS 4
2436 author local\-part (see
2437 \fI%al\fR) respecting \&.mailmap, see
2438 \fBgit-shortlog\fR(1)
2440 \fBgit-blame\fR(1))
2443 \fI%ad\fR
2444 .RS 4
2445 author date (format respects \-\-date= option)
2448 \fI%aD\fR
2449 .RS 4
2450 author date, RFC2822 style
2453 \fI%ar\fR
2454 .RS 4
2455 author date, relative
2458 \fI%at\fR
2459 .RS 4
2460 author date, UNIX timestamp
2463 \fI%ai\fR
2464 .RS 4
2465 author date, ISO 8601\-like format
2468 \fI%aI\fR
2469 .RS 4
2470 author date, strict ISO 8601 format
2473 \fI%as\fR
2474 .RS 4
2475 author date, short format (\fBYYYY\-MM\-DD\fR)
2478 \fI%ah\fR
2479 .RS 4
2480 author date, human style (like the
2481 \fB\-\-date=human\fR
2482 option of
2483 \fBgit-rev-list\fR(1))
2486 \fI%cn\fR
2487 .RS 4
2488 committer name
2491 \fI%cN\fR
2492 .RS 4
2493 committer name (respecting \&.mailmap, see
2494 \fBgit-shortlog\fR(1)
2496 \fBgit-blame\fR(1))
2499 \fI%ce\fR
2500 .RS 4
2501 committer email
2504 \fI%cE\fR
2505 .RS 4
2506 committer email (respecting \&.mailmap, see
2507 \fBgit-shortlog\fR(1)
2509 \fBgit-blame\fR(1))
2512 \fI%cl\fR
2513 .RS 4
2514 committer email local\-part (the part before the
2515 \fI@\fR
2516 sign)
2519 \fI%cL\fR
2520 .RS 4
2521 committer local\-part (see
2522 \fI%cl\fR) respecting \&.mailmap, see
2523 \fBgit-shortlog\fR(1)
2525 \fBgit-blame\fR(1))
2528 \fI%cd\fR
2529 .RS 4
2530 committer date (format respects \-\-date= option)
2533 \fI%cD\fR
2534 .RS 4
2535 committer date, RFC2822 style
2538 \fI%cr\fR
2539 .RS 4
2540 committer date, relative
2543 \fI%ct\fR
2544 .RS 4
2545 committer date, UNIX timestamp
2548 \fI%ci\fR
2549 .RS 4
2550 committer date, ISO 8601\-like format
2553 \fI%cI\fR
2554 .RS 4
2555 committer date, strict ISO 8601 format
2558 \fI%cs\fR
2559 .RS 4
2560 committer date, short format (\fBYYYY\-MM\-DD\fR)
2563 \fI%ch\fR
2564 .RS 4
2565 committer date, human style (like the
2566 \fB\-\-date=human\fR
2567 option of
2568 \fBgit-rev-list\fR(1))
2571 \fI%d\fR
2572 .RS 4
2573 ref names, like the \-\-decorate option of
2574 \fBgit-log\fR(1)
2577 \fI%D\fR
2578 .RS 4
2579 ref names without the " (", ")" wrapping\&.
2582 \fI%(describe[:options])\fR
2583 .RS 4
2584 human\-readable name, like
2585 \fBgit-describe\fR(1); empty string for undescribable commits\&. The
2586 \fBdescribe\fR
2587 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\&.
2589 .RS 4
2590 .ie n \{\
2591 \h'-04'\(bu\h'+03'\c
2593 .el \{\
2594 .sp -1
2595 .IP \(bu 2.3
2597 \fItags[=<bool\-value>]\fR: Instead of only considering annotated tags, consider lightweight tags as well\&.
2600 .RS 4
2601 .ie n \{\
2602 \h'-04'\(bu\h'+03'\c
2604 .el \{\
2605 .sp -1
2606 .IP \(bu 2.3
2608 \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\&.
2611 .RS 4
2612 .ie n \{\
2613 \h'-04'\(bu\h'+03'\c
2615 .el \{\
2616 .sp -1
2617 .IP \(bu 2.3
2619 \fImatch=<pattern>\fR: Only consider tags matching the given
2620 \fBglob(7)\fR
2621 pattern, excluding the "refs/tags/" prefix\&.
2624 .RS 4
2625 .ie n \{\
2626 \h'-04'\(bu\h'+03'\c
2628 .el \{\
2629 .sp -1
2630 .IP \(bu 2.3
2632 \fIexclude=<pattern>\fR: Do not consider tags matching the given
2633 \fBglob(7)\fR
2634 pattern, excluding the "refs/tags/" prefix\&.
2638 \fI%S\fR
2639 .RS 4
2640 ref name given on the command line by which the commit was reached (like
2641 \fBgit log \-\-source\fR), only works with
2642 \fBgit log\fR
2645 \fI%e\fR
2646 .RS 4
2647 encoding
2650 \fI%s\fR
2651 .RS 4
2652 subject
2655 \fI%f\fR
2656 .RS 4
2657 sanitized subject line, suitable for a filename
2660 \fI%b\fR
2661 .RS 4
2662 body
2665 \fI%B\fR
2666 .RS 4
2667 raw body (unwrapped subject and body)
2670 \fI%N\fR
2671 .RS 4
2672 commit notes
2675 \fI%GG\fR
2676 .RS 4
2677 raw verification message from GPG for a signed commit
2680 \fI%G?\fR
2681 .RS 4
2682 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
2685 \fI%GS\fR
2686 .RS 4
2687 show the name of the signer for a signed commit
2690 \fI%GK\fR
2691 .RS 4
2692 show the key used to sign a signed commit
2695 \fI%GF\fR
2696 .RS 4
2697 show the fingerprint of the key used to sign a signed commit
2700 \fI%GP\fR
2701 .RS 4
2702 show the fingerprint of the primary key whose subkey was used to sign a signed commit
2705 \fI%GT\fR
2706 .RS 4
2707 show the trust level for the key used to sign a signed commit
2710 \fI%gD\fR
2711 .RS 4
2712 reflog selector, e\&.g\&.,
2713 \fBrefs/stash@{1}\fR
2715 \fBrefs/stash@{2 minutes ago}\fR; the format follows the rules described for the
2716 \fB\-g\fR
2717 option\&. The portion before the
2718 \fB@\fR
2719 is the refname as given on the command line (so
2720 \fBgit log \-g refs/heads/master\fR
2721 would yield
2722 \fBrefs/heads/master@{0}\fR)\&.
2725 \fI%gd\fR
2726 .RS 4
2727 shortened reflog selector; same as
2728 \fB%gD\fR, but the refname portion is shortened for human readability (so
2729 \fBrefs/heads/master\fR
2730 becomes just
2731 \fBmaster\fR)\&.
2734 \fI%gn\fR
2735 .RS 4
2736 reflog identity name
2739 \fI%gN\fR
2740 .RS 4
2741 reflog identity name (respecting \&.mailmap, see
2742 \fBgit-shortlog\fR(1)
2744 \fBgit-blame\fR(1))
2747 \fI%ge\fR
2748 .RS 4
2749 reflog identity email
2752 \fI%gE\fR
2753 .RS 4
2754 reflog identity email (respecting \&.mailmap, see
2755 \fBgit-shortlog\fR(1)
2757 \fBgit-blame\fR(1))
2760 \fI%gs\fR
2761 .RS 4
2762 reflog subject
2765 \fI%(trailers[:options])\fR
2766 .RS 4
2767 display the trailers of the body as interpreted by
2768 \fBgit-interpret-trailers\fR(1)\&. The
2769 \fBtrailers\fR
2770 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\&.
2772 .RS 4
2773 .ie n \{\
2774 \h'-04'\(bu\h'+03'\c
2776 .el \{\
2777 .sp -1
2778 .IP \(bu 2.3
2780 \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
2781 \fBonly\fR
2782 option so that non\-trailer lines in the trailer block are hidden\&. If that is not desired it can be disabled with
2783 \fBonly=false\fR\&. E\&.g\&.,
2784 \fB%(trailers:key=Reviewed\-by)\fR
2785 shows trailer lines with key
2786 \fBReviewed\-by\fR\&.
2789 .RS 4
2790 .ie n \{\
2791 \h'-04'\(bu\h'+03'\c
2793 .el \{\
2794 .sp -1
2795 .IP \(bu 2.3
2797 \fIonly[=<bool>]\fR: select whether non\-trailer lines from the trailer block should be included\&.
2800 .RS 4
2801 .ie n \{\
2802 \h'-04'\(bu\h'+03'\c
2804 .el \{\
2805 .sp -1
2806 .IP \(bu 2.3
2808 \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
2809 \fB%x2C\fR
2810 as it would otherwise be parsed as next option\&. E\&.g\&.,
2811 \fB%(trailers:key=Ticket,separator=%x2C )\fR
2812 shows all trailer lines whose key is "Ticket" separated by a comma and a space\&.
2815 .RS 4
2816 .ie n \{\
2817 \h'-04'\(bu\h'+03'\c
2819 .el \{\
2820 .sp -1
2821 .IP \(bu 2.3
2823 \fIunfold[=<bool>]\fR: make it behave as if interpret\-trailer\(cqs
2824 \fB\-\-unfold\fR
2825 option was given\&. E\&.g\&.,
2826 \fB%(trailers:only,unfold=true)\fR
2827 unfolds and shows all trailer lines\&.
2830 .RS 4
2831 .ie n \{\
2832 \h'-04'\(bu\h'+03'\c
2834 .el \{\
2835 .sp -1
2836 .IP \(bu 2.3
2838 \fIkeyonly[=<bool>]\fR: only show the key part of the trailer\&.
2841 .RS 4
2842 .ie n \{\
2843 \h'-04'\(bu\h'+03'\c
2845 .el \{\
2846 .sp -1
2847 .IP \(bu 2.3
2849 \fIvalueonly[=<bool>]\fR: only show the value part of the trailer\&.
2852 .RS 4
2853 .ie n \{\
2854 \h'-04'\(bu\h'+03'\c
2856 .el \{\
2857 .sp -1
2858 .IP \(bu 2.3
2860 \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
2861 \fIseparator=<sep>\fR
2862 above\&.
2867 .if n \{\
2870 .RS 4
2871 .it 1 an-trap
2872 .nr an-no-space-flag 1
2873 .nr an-break-flag 1
2875 .ps +1
2876 \fBNote\fR
2877 .ps -1
2880 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\&.
2881 .sp .5v
2884 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\&.
2886 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\&.
2888 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\&.
2890 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\&.
2892 .RS 4
2893 .ie n \{\
2894 \h'-04'\(bu\h'+03'\c
2896 .el \{\
2897 .sp -1
2898 .IP \(bu 2.3
2900 \fItformat:\fR
2903 \fItformat:\fR
2904 format works exactly like
2905 \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:
2907 .if n \{\
2908 .RS 4
2911 $ git log \-2 \-\-pretty=format:%h 4da45bef \e
2912   | perl \-pe \(aq$_ \&.= " \-\- NO NEWLINE\en" unless /\en/\(aq
2913 4da45be
2914 7134973 \-\- NO NEWLINE
2916 $ git log \-2 \-\-pretty=tformat:%h 4da45bef \e
2917   | perl \-pe \(aq$_ \&.= " \-\- NO NEWLINE\en" unless /\en/\(aq
2918 4da45be
2919 7134973
2921 .if n \{\
2925 In addition, any unrecognized string that has a
2926 \fB%\fR
2927 in it is interpreted as if it has
2928 \fBtformat:\fR
2929 in front of it\&. For example, these two are equivalent:
2931 .if n \{\
2932 .RS 4
2935 $ git log \-2 \-\-pretty=tformat:%h 4da45bef
2936 $ git log \-2 \-\-pretty=%h 4da45bef
2938 .if n \{\
2943 .SH "DIFF FORMATTING"
2945 By default, \fBgit log\fR does not generate any diff output\&. The options below can be used to show the changes made by each commit\&.
2947 Note that unless one of \fB\-\-diff\-merges\fR variants (including short \fB\-m\fR, \fB\-c\fR, and \fB\-\-cc\fR options) is explicitly given, merge commits will not show a diff, even if a diff format like \fB\-\-patch\fR is selected, nor will they match search options like \fB\-S\fR\&. The exception is when \fB\-\-first\-parent\fR is in use, in which case \fBfirst\-parent\fR is the default format\&.
2949 \-p, \-u, \-\-patch
2950 .RS 4
2951 Generate patch (see section titled
2952 "Generating patch text with \-p")\&.
2955 \-s, \-\-no\-patch
2956 .RS 4
2957 Suppress diff output\&. Useful for commands like
2958 \fBgit show\fR
2959 that show the patch by default, or to cancel the effect of
2960 \fB\-\-patch\fR\&.
2963 \-\-diff\-merges=(off|none|on|first\-parent|1|separate|m|combined|c|dense\-combined|cc|remerge|r), \-\-no\-diff\-merges
2964 .RS 4
2965 Specify diff format to be used for merge commits\&. Default is
2966 \fBoff\fR
2967 unless
2968 \fB\-\-first\-parent\fR
2969 is in use, in which case
2970 \fBfirst\-parent\fR
2971 is the default\&.
2973 \-\-diff\-merges=(off|none), \-\-no\-diff\-merges
2974 .RS 4
2975 Disable output of diffs for merge commits\&. Useful to override implied value\&.
2978 \-\-diff\-merges=on, \-\-diff\-merges=m, \-m
2979 .RS 4
2980 This option makes diff output for merge commits to be shown in the default format\&.
2981 \fB\-m\fR
2982 will produce the output only if
2983 \fB\-p\fR
2984 is given as well\&. The default format could be changed using
2985 \fBlog\&.diffMerges\fR
2986 configuration parameter, which default value is
2987 \fBseparate\fR\&.
2990 \-\-diff\-merges=first\-parent, \-\-diff\-merges=1
2991 .RS 4
2992 This option makes merge commits show the full diff with respect to the first parent only\&.
2995 \-\-diff\-merges=separate
2996 .RS 4
2997 This makes merge commits show the full diff with respect to each of the parents\&. Separate log entry and diff is generated for each parent\&.
3000 \-\-diff\-merges=remerge, \-\-diff\-merges=r, \-\-remerge\-diff
3001 .RS 4
3002 With this option, two\-parent merge commits are remerged to create a temporary tree object \(em potentially containing files with conflict markers and such\&. A diff is then shown between that temporary tree and the actual merge commit\&.
3004 The output emitted when this option is used is subject to change, and so is its interaction with other options (unless explicitly documented)\&.
3007 \-\-diff\-merges=combined, \-\-diff\-merges=c, \-c
3008 .RS 4
3009 With this option, diff output for a merge commit shows the differences from each of the parents to the merge result simultaneously instead of showing pairwise diff between a parent and the result one at a time\&. Furthermore, it lists only files which were modified from all parents\&.
3010 \fB\-c\fR
3011 implies
3012 \fB\-p\fR\&.
3015 \-\-diff\-merges=dense\-combined, \-\-diff\-merges=cc, \-\-cc
3016 .RS 4
3017 With this option the output produced by
3018 \fB\-\-diff\-merges=combined\fR
3019 is further compressed by omitting uninteresting hunks whose contents in the parents have only two variants and the merge result picks one of them without modification\&.
3020 \fB\-\-cc\fR
3021 implies
3022 \fB\-p\fR\&.
3026 \-\-combined\-all\-paths
3027 .RS 4
3028 This flag causes combined diffs (used for merge commits) to list the name of the file from all parents\&. It thus only has effect when
3029 \fB\-\-diff\-merges=[dense\-]combined\fR
3030 is in use, and is likely only useful if filename changes are detected (i\&.e\&. when either rename or copy detection have been requested)\&.
3033 \-U<n>, \-\-unified=<n>
3034 .RS 4
3035 Generate diffs with <n> lines of context instead of the usual three\&. Implies
3036 \fB\-\-patch\fR\&.
3039 \-\-output=<file>
3040 .RS 4
3041 Output to a specific file instead of stdout\&.
3044 \-\-output\-indicator\-new=<char>, \-\-output\-indicator\-old=<char>, \-\-output\-indicator\-context=<char>
3045 .RS 4
3046 Specify the character used to indicate new, old or context lines in the generated patch\&. Normally they are
3047 \fI+\fR,
3048 \fI\-\fR
3049 and \(aq \(aq respectively\&.
3052 \-\-raw
3053 .RS 4
3054 For each commit, show a summary of changes using the raw diff format\&. See the "RAW OUTPUT FORMAT" section of
3055 \fBgit-diff\fR(1)\&. This is different from showing the log itself in raw format, which you can achieve with
3056 \fB\-\-format=raw\fR\&.
3059 \-\-patch\-with\-raw
3060 .RS 4
3061 Synonym for
3062 \fB\-p \-\-raw\fR\&.
3066 .RS 4
3067 Show the tree objects in the diff output\&.
3070 \-\-indent\-heuristic
3071 .RS 4
3072 Enable the heuristic that shifts diff hunk boundaries to make patches easier to read\&. This is the default\&.
3075 \-\-no\-indent\-heuristic
3076 .RS 4
3077 Disable the indent heuristic\&.
3080 \-\-minimal
3081 .RS 4
3082 Spend extra time to make sure the smallest possible diff is produced\&.
3085 \-\-patience
3086 .RS 4
3087 Generate a diff using the "patience diff" algorithm\&.
3090 \-\-histogram
3091 .RS 4
3092 Generate a diff using the "histogram diff" algorithm\&.
3095 \-\-anchored=<text>
3096 .RS 4
3097 Generate a diff using the "anchored diff" algorithm\&.
3099 This option may be specified more than once\&.
3101 If a line exists in both the source and destination, exists only once, and starts with this text, this algorithm attempts to prevent it from appearing as a deletion or addition in the output\&. It uses the "patience diff" algorithm internally\&.
3104 \-\-diff\-algorithm={patience|minimal|histogram|myers}
3105 .RS 4
3106 Choose a diff algorithm\&. The variants are as follows:
3108 \fBdefault\fR, \fBmyers\fR
3109 .RS 4
3110 The basic greedy diff algorithm\&. Currently, this is the default\&.
3113 \fBminimal\fR
3114 .RS 4
3115 Spend extra time to make sure the smallest possible diff is produced\&.
3118 \fBpatience\fR
3119 .RS 4
3120 Use "patience diff" algorithm when generating patches\&.
3123 \fBhistogram\fR
3124 .RS 4
3125 This algorithm extends the patience algorithm to "support low\-occurrence common elements"\&.
3128 For instance, if you configured the
3129 \fBdiff\&.algorithm\fR
3130 variable to a non\-default value and want to use the default one, then you have to use
3131 \fB\-\-diff\-algorithm=default\fR
3132 option\&.
3135 \-\-stat[=<width>[,<name\-width>[,<count>]]]
3136 .RS 4
3137 Generate a diffstat\&. By default, as much space as necessary will be used for the filename part, and the rest for the graph part\&. Maximum width defaults to terminal width, or 80 columns if not connected to a terminal, and can be overridden by
3138 \fB<width>\fR\&. The width of the filename part can be limited by giving another width
3139 \fB<name\-width>\fR
3140 after a comma\&. The width of the graph part can be limited by using
3141 \fB\-\-stat\-graph\-width=<width>\fR
3142 (affects all commands generating a stat graph) or by setting
3143 \fBdiff\&.statGraphWidth=<width>\fR
3144 (does not affect
3145 \fBgit format\-patch\fR)\&. By giving a third parameter
3146 \fB<count>\fR, you can limit the output to the first
3147 \fB<count>\fR
3148 lines, followed by
3149 \fB\&.\&.\&.\fR
3150 if there are more\&.
3152 These parameters can also be set individually with
3153 \fB\-\-stat\-width=<width>\fR,
3154 \fB\-\-stat\-name\-width=<name\-width>\fR
3156 \fB\-\-stat\-count=<count>\fR\&.
3159 \-\-compact\-summary
3160 .RS 4
3161 Output a condensed summary of extended header information such as file creations or deletions ("new" or "gone", optionally "+l" if it\(cqs a symlink) and mode changes ("+x" or "\-x" for adding or removing executable bit respectively) in diffstat\&. The information is put between the filename part and the graph part\&. Implies
3162 \fB\-\-stat\fR\&.
3165 \-\-numstat
3166 .RS 4
3167 Similar to
3168 \fB\-\-stat\fR, but shows number of added and deleted lines in decimal notation and pathname without abbreviation, to make it more machine friendly\&. For binary files, outputs two
3169 \fB\-\fR
3170 instead of saying
3171 \fB0 0\fR\&.
3174 \-\-shortstat
3175 .RS 4
3176 Output only the last line of the
3177 \fB\-\-stat\fR
3178 format containing total number of modified files, as well as number of added and deleted lines\&.
3181 \-X[<param1,param2,\&...>], \-\-dirstat[=<param1,param2,\&...>]
3182 .RS 4
3183 Output the distribution of relative amount of changes for each sub\-directory\&. The behavior of
3184 \fB\-\-dirstat\fR
3185 can be customized by passing it a comma separated list of parameters\&. The defaults are controlled by the
3186 \fBdiff\&.dirstat\fR
3187 configuration variable (see
3188 \fBgit-config\fR(1))\&. The following parameters are available:
3190 \fBchanges\fR
3191 .RS 4
3192 Compute the dirstat numbers by counting the lines that have been removed from the source, or added to the destination\&. This ignores the amount of pure code movements within a file\&. In other words, rearranging lines in a file is not counted as much as other changes\&. This is the default behavior when no parameter is given\&.
3195 \fBlines\fR
3196 .RS 4
3197 Compute the dirstat numbers by doing the regular line\-based diff analysis, and summing the removed/added line counts\&. (For binary files, count 64\-byte chunks instead, since binary files have no natural concept of lines)\&. This is a more expensive
3198 \fB\-\-dirstat\fR
3199 behavior than the
3200 \fBchanges\fR
3201 behavior, but it does count rearranged lines within a file as much as other changes\&. The resulting output is consistent with what you get from the other
3202 \fB\-\-*stat\fR
3203 options\&.
3206 \fBfiles\fR
3207 .RS 4
3208 Compute the dirstat numbers by counting the number of files changed\&. Each changed file counts equally in the dirstat analysis\&. This is the computationally cheapest
3209 \fB\-\-dirstat\fR
3210 behavior, since it does not have to look at the file contents at all\&.
3213 \fBcumulative\fR
3214 .RS 4
3215 Count changes in a child directory for the parent directory as well\&. Note that when using
3216 \fBcumulative\fR, the sum of the percentages reported may exceed 100%\&. The default (non\-cumulative) behavior can be specified with the
3217 \fBnoncumulative\fR
3218 parameter\&.
3221 <limit>
3222 .RS 4
3223 An integer parameter specifies a cut\-off percent (3% by default)\&. Directories contributing less than this percentage of the changes are not shown in the output\&.
3226 Example: The following will count changed files, while ignoring directories with less than 10% of the total amount of changed files, and accumulating child directory counts in the parent directories:
3227 \fB\-\-dirstat=files,10,cumulative\fR\&.
3230 \-\-cumulative
3231 .RS 4
3232 Synonym for \-\-dirstat=cumulative
3235 \-\-dirstat\-by\-file[=<param1,param2>\&...]
3236 .RS 4
3237 Synonym for \-\-dirstat=files,param1,param2\&...
3240 \-\-summary
3241 .RS 4
3242 Output a condensed summary of extended header information such as creations, renames and mode changes\&.
3245 \-\-patch\-with\-stat
3246 .RS 4
3247 Synonym for
3248 \fB\-p \-\-stat\fR\&.
3252 .RS 4
3253 Separate the commits with NULs instead of with new newlines\&.
3255 Also, when
3256 \fB\-\-raw\fR
3258 \fB\-\-numstat\fR
3259 has been given, do not munge pathnames and use NULs as output field terminators\&.
3261 Without this option, pathnames with "unusual" characters are quoted as explained for the configuration variable
3262 \fBcore\&.quotePath\fR
3263 (see
3264 \fBgit-config\fR(1))\&.
3267 \-\-name\-only
3268 .RS 4
3269 Show only names of changed files\&. The file names are often encoded in UTF\-8\&. For more information see the discussion about encoding in the
3270 \fBgit-log\fR(1)
3271 manual page\&.
3274 \-\-name\-status
3275 .RS 4
3276 Show only names and status of changed files\&. See the description of the
3277 \fB\-\-diff\-filter\fR
3278 option on what the status letters mean\&. Just like
3279 \fB\-\-name\-only\fR
3280 the file names are often encoded in UTF\-8\&.
3283 \-\-submodule[=<format>]
3284 .RS 4
3285 Specify how differences in submodules are shown\&. When specifying
3286 \fB\-\-submodule=short\fR
3288 \fIshort\fR
3289 format is used\&. This format just shows the names of the commits at the beginning and end of the range\&. When
3290 \fB\-\-submodule\fR
3292 \fB\-\-submodule=log\fR
3293 is specified, the
3294 \fIlog\fR
3295 format is used\&. This format lists the commits in the range like
3296 \fBgit-submodule\fR(1)
3297 \fBsummary\fR
3298 does\&. When
3299 \fB\-\-submodule=diff\fR
3300 is specified, the
3301 \fIdiff\fR
3302 format is used\&. This format shows an inline diff of the changes in the submodule contents between the commit range\&. Defaults to
3303 \fBdiff\&.submodule\fR
3304 or the
3305 \fIshort\fR
3306 format if the config option is unset\&.
3309 \-\-color[=<when>]
3310 .RS 4
3311 Show colored diff\&.
3312 \fB\-\-color\fR
3313 (i\&.e\&. without
3314 \fI=<when>\fR) is the same as
3315 \fB\-\-color=always\fR\&.
3316 \fI<when>\fR
3317 can be one of
3318 \fBalways\fR,
3319 \fBnever\fR, or
3320 \fBauto\fR\&.
3323 \-\-no\-color
3324 .RS 4
3325 Turn off colored diff\&. It is the same as
3326 \fB\-\-color=never\fR\&.
3329 \-\-color\-moved[=<mode>]
3330 .RS 4
3331 Moved lines of code are colored differently\&. The <mode> defaults to
3332 \fIno\fR
3333 if the option is not given and to
3334 \fIzebra\fR
3335 if the option with no mode is given\&. The mode must be one of:
3338 .RS 4
3339 Moved lines are not highlighted\&.
3342 default
3343 .RS 4
3344 Is a synonym for
3345 \fBzebra\fR\&. This may change to a more sensible mode in the future\&.
3348 plain
3349 .RS 4
3350 Any line that is added in one location and was removed in another location will be colored with
3351 \fIcolor\&.diff\&.newMoved\fR\&. Similarly
3352 \fIcolor\&.diff\&.oldMoved\fR
3353 will be used for removed lines that are added somewhere else in the diff\&. This mode picks up any moved line, but it is not very useful in a review to determine if a block of code was moved without permutation\&.
3356 blocks
3357 .RS 4
3358 Blocks of moved text of at least 20 alphanumeric characters are detected greedily\&. The detected blocks are painted using either the
3359 \fIcolor\&.diff\&.{old,new}Moved\fR
3360 color\&. Adjacent blocks cannot be told apart\&.
3363 zebra
3364 .RS 4
3365 Blocks of moved text are detected as in
3366 \fIblocks\fR
3367 mode\&. The blocks are painted using either the
3368 \fIcolor\&.diff\&.{old,new}Moved\fR
3369 color or
3370 \fIcolor\&.diff\&.{old,new}MovedAlternative\fR\&. The change between the two colors indicates that a new block was detected\&.
3373 dimmed\-zebra
3374 .RS 4
3375 Similar to
3376 \fIzebra\fR, but additional dimming of uninteresting parts of moved code is performed\&. The bordering lines of two adjacent blocks are considered interesting, the rest is uninteresting\&.
3377 \fBdimmed_zebra\fR
3378 is a deprecated synonym\&.
3382 \-\-no\-color\-moved
3383 .RS 4
3384 Turn off move detection\&. This can be used to override configuration settings\&. It is the same as
3385 \fB\-\-color\-moved=no\fR\&.
3388 \-\-color\-moved\-ws=<modes>
3389 .RS 4
3390 This configures how whitespace is ignored when performing the move detection for
3391 \fB\-\-color\-moved\fR\&. These modes can be given as a comma separated list:
3394 .RS 4
3395 Do not ignore whitespace when performing move detection\&.
3398 ignore\-space\-at\-eol
3399 .RS 4
3400 Ignore changes in whitespace at EOL\&.
3403 ignore\-space\-change
3404 .RS 4
3405 Ignore changes in amount of whitespace\&. This ignores whitespace at line end, and considers all other sequences of one or more whitespace characters to be equivalent\&.
3408 ignore\-all\-space
3409 .RS 4
3410 Ignore whitespace when comparing lines\&. This ignores differences even if one line has whitespace where the other line has none\&.
3413 allow\-indentation\-change
3414 .RS 4
3415 Initially ignore any whitespace in the move detection, then group the moved code blocks only into a block if the change in whitespace is the same per line\&. This is incompatible with the other modes\&.
3419 \-\-no\-color\-moved\-ws
3420 .RS 4
3421 Do not ignore whitespace when performing move detection\&. This can be used to override configuration settings\&. It is the same as
3422 \fB\-\-color\-moved\-ws=no\fR\&.
3425 \-\-word\-diff[=<mode>]
3426 .RS 4
3427 Show a word diff, using the <mode> to delimit changed words\&. By default, words are delimited by whitespace; see
3428 \fB\-\-word\-diff\-regex\fR
3429 below\&. The <mode> defaults to
3430 \fIplain\fR, and must be one of:
3432 color
3433 .RS 4
3434 Highlight changed words using only colors\&. Implies
3435 \fB\-\-color\fR\&.
3438 plain
3439 .RS 4
3440 Show words as
3441 \fB[\-removed\-]\fR
3443 \fB{+added+}\fR\&. Makes no attempts to escape the delimiters if they appear in the input, so the output may be ambiguous\&.
3446 porcelain
3447 .RS 4
3448 Use a special line\-based format intended for script consumption\&. Added/removed/unchanged runs are printed in the usual unified diff format, starting with a
3449 \fB+\fR/\fB\-\fR/` ` character at the beginning of the line and extending to the end of the line\&. Newlines in the input are represented by a tilde
3450 \fB~\fR
3451 on a line of its own\&.
3454 none
3455 .RS 4
3456 Disable word diff again\&.
3459 Note that despite the name of the first mode, color is used to highlight the changed parts in all modes if enabled\&.
3462 \-\-word\-diff\-regex=<regex>
3463 .RS 4
3464 Use <regex> to decide what a word is, instead of considering runs of non\-whitespace to be a word\&. Also implies
3465 \fB\-\-word\-diff\fR
3466 unless it was already enabled\&.
3468 Every non\-overlapping match of the <regex> is considered a word\&. Anything between these matches is considered whitespace and ignored(!) for the purposes of finding differences\&. You may want to append
3469 \fB|[^[:space:]]\fR
3470 to your regular expression to make sure that it matches all non\-whitespace characters\&. A match that contains a newline is silently truncated(!) at the newline\&.
3472 For example,
3473 \fB\-\-word\-diff\-regex=\&.\fR
3474 will treat each character as a word and, correspondingly, show differences character by character\&.
3476 The regex can also be set via a diff driver or configuration option, see
3477 \fBgitattributes\fR(5)
3479 \fBgit-config\fR(1)\&. Giving it explicitly overrides any diff driver or configuration setting\&. Diff drivers override configuration settings\&.
3482 \-\-color\-words[=<regex>]
3483 .RS 4
3484 Equivalent to
3485 \fB\-\-word\-diff=color\fR
3486 plus (if a regex was specified)
3487 \fB\-\-word\-diff\-regex=<regex>\fR\&.
3490 \-\-no\-renames
3491 .RS 4
3492 Turn off rename detection, even when the configuration file gives the default to do so\&.
3495 \-\-[no\-]rename\-empty
3496 .RS 4
3497 Whether to use empty blobs as rename source\&.
3500 \-\-check
3501 .RS 4
3502 Warn if changes introduce conflict markers or whitespace errors\&. What are considered whitespace errors is controlled by
3503 \fBcore\&.whitespace\fR
3504 configuration\&. By default, trailing whitespaces (including lines that consist solely of whitespaces) and a space character that is immediately followed by a tab character inside the initial indent of the line are considered whitespace errors\&. Exits with non\-zero status if problems are found\&. Not compatible with \-\-exit\-code\&.
3507 \-\-ws\-error\-highlight=<kind>
3508 .RS 4
3509 Highlight whitespace errors in the
3510 \fBcontext\fR,
3511 \fBold\fR
3513 \fBnew\fR
3514 lines of the diff\&. Multiple values are separated by comma,
3515 \fBnone\fR
3516 resets previous values,
3517 \fBdefault\fR
3518 reset the list to
3519 \fBnew\fR
3521 \fBall\fR
3522 is a shorthand for
3523 \fBold,new,context\fR\&. When this option is not given, and the configuration variable
3524 \fBdiff\&.wsErrorHighlight\fR
3525 is not set, only whitespace errors in
3526 \fBnew\fR
3527 lines are highlighted\&. The whitespace errors are colored with
3528 \fBcolor\&.diff\&.whitespace\fR\&.
3531 \-\-full\-index
3532 .RS 4
3533 Instead of the first handful of characters, show the full pre\- and post\-image blob object names on the "index" line when generating patch format output\&.
3536 \-\-binary
3537 .RS 4
3538 In addition to
3539 \fB\-\-full\-index\fR, output a binary diff that can be applied with
3540 \fBgit\-apply\fR\&. Implies
3541 \fB\-\-patch\fR\&.
3544 \-\-abbrev[=<n>]
3545 .RS 4
3546 Instead of showing the full 40\-byte hexadecimal object name in diff\-raw format output and diff\-tree header lines, show the shortest prefix that is at least
3547 \fI<n>\fR
3548 hexdigits long that uniquely refers the object\&. In diff\-patch output format,
3549 \fB\-\-full\-index\fR
3550 takes higher precedence, i\&.e\&. if
3551 \fB\-\-full\-index\fR
3552 is specified, full blob names will be shown regardless of
3553 \fB\-\-abbrev\fR\&. Non default number of digits can be specified with
3554 \fB\-\-abbrev=<n>\fR\&.
3557 \-B[<n>][/<m>], \-\-break\-rewrites[=[<n>][/<m>]]
3558 .RS 4
3559 Break complete rewrite changes into pairs of delete and create\&. This serves two purposes:
3561 It affects the way a change that amounts to a total rewrite of a file not as a series of deletion and insertion mixed together with a very few lines that happen to match textually as the context, but as a single deletion of everything old followed by a single insertion of everything new, and the number
3562 \fBm\fR
3563 controls this aspect of the \-B option (defaults to 60%)\&.
3564 \fB\-B/70%\fR
3565 specifies that less than 30% of the original should remain in the result for Git to consider it a total rewrite (i\&.e\&. otherwise the resulting patch will be a series of deletion and insertion mixed together with context lines)\&.
3567 When used with \-M, a totally\-rewritten file is also considered as the source of a rename (usually \-M only considers a file that disappeared as the source of a rename), and the number
3568 \fBn\fR
3569 controls this aspect of the \-B option (defaults to 50%)\&.
3570 \fB\-B20%\fR
3571 specifies that a change with addition and deletion compared to 20% or more of the file\(cqs size are eligible for being picked up as a possible source of a rename to another file\&.
3574 \-M[<n>], \-\-find\-renames[=<n>]
3575 .RS 4
3576 If generating diffs, detect and report renames for each commit\&. For following files across renames while traversing history, see
3577 \fB\-\-follow\fR\&. If
3578 \fBn\fR
3579 is specified, it is a threshold on the similarity index (i\&.e\&. amount of addition/deletions compared to the file\(cqs size)\&. For example,
3580 \fB\-M90%\fR
3581 means Git should consider a delete/add pair to be a rename if more than 90% of the file hasn\(cqt changed\&. Without a
3582 \fB%\fR
3583 sign, the number is to be read as a fraction, with a decimal point before it\&. I\&.e\&.,
3584 \fB\-M5\fR
3585 becomes 0\&.5, and is thus the same as
3586 \fB\-M50%\fR\&. Similarly,
3587 \fB\-M05\fR
3588 is the same as
3589 \fB\-M5%\fR\&. To limit detection to exact renames, use
3590 \fB\-M100%\fR\&. The default similarity index is 50%\&.
3593 \-C[<n>], \-\-find\-copies[=<n>]
3594 .RS 4
3595 Detect copies as well as renames\&. See also
3596 \fB\-\-find\-copies\-harder\fR\&. If
3597 \fBn\fR
3598 is specified, it has the same meaning as for
3599 \fB\-M<n>\fR\&.
3602 \-\-find\-copies\-harder
3603 .RS 4
3604 For performance reasons, by default,
3605 \fB\-C\fR
3606 option finds copies only if the original file of the copy was modified in the same changeset\&. This flag makes the command inspect unmodified files as candidates for the source of copy\&. This is a very expensive operation for large projects, so use it with caution\&. Giving more than one
3607 \fB\-C\fR
3608 option has the same effect\&.
3611 \-D, \-\-irreversible\-delete
3612 .RS 4
3613 Omit the preimage for deletes, i\&.e\&. print only the header but not the diff between the preimage and
3614 \fB/dev/null\fR\&. The resulting patch is not meant to be applied with
3615 \fBpatch\fR
3617 \fBgit apply\fR; this is solely for people who want to just concentrate on reviewing the text after the change\&. In addition, the output obviously lacks enough information to apply such a patch in reverse, even manually, hence the name of the option\&.
3619 When used together with
3620 \fB\-B\fR, omit also the preimage in the deletion part of a delete/create pair\&.
3623 \-l<num>
3624 .RS 4
3626 \fB\-M\fR
3628 \fB\-C\fR
3629 options involve some preliminary steps that can detect subsets of renames/copies cheaply, followed by an exhaustive fallback portion that compares all remaining unpaired destinations to all relevant sources\&. (For renames, only remaining unpaired sources are relevant; for copies, all original sources are relevant\&.) For N sources and destinations, this exhaustive check is O(N^2)\&. This option prevents the exhaustive portion of rename/copy detection from running if the number of source/destination files involved exceeds the specified number\&. Defaults to diff\&.renameLimit\&. Note that a value of 0 is treated as unlimited\&.
3632 \-\-diff\-filter=[(A|C|D|M|R|T|U|X|B)\&...[*]]
3633 .RS 4
3634 Select only files that are Added (\fBA\fR), Copied (\fBC\fR), Deleted (\fBD\fR), Modified (\fBM\fR), Renamed (\fBR\fR), have their type (i\&.e\&. regular file, symlink, submodule, \&...) changed (\fBT\fR), are Unmerged (\fBU\fR), are Unknown (\fBX\fR), or have had their pairing Broken (\fBB\fR)\&. Any combination of the filter characters (including none) can be used\&. When
3635 \fB*\fR
3636 (All\-or\-none) is added to the combination, all paths are selected if there is any file that matches other criteria in the comparison; if there is no file that matches other criteria, nothing is selected\&.
3638 Also, these upper\-case letters can be downcased to exclude\&. E\&.g\&.
3639 \fB\-\-diff\-filter=ad\fR
3640 excludes added and deleted paths\&.
3642 Note that not all diffs can feature all types\&. For instance, copied and renamed entries cannot appear if detection for those types is disabled\&.
3645 \-S<string>
3646 .RS 4
3647 Look for differences that change the number of occurrences of the specified string (i\&.e\&. addition/deletion) in a file\&. Intended for the scripter\(cqs use\&.
3649 It is useful when you\(cqre looking for an exact block of code (like a struct), and want to know the history of that block since it first came into being: use the feature iteratively to feed the interesting block in the preimage back into
3650 \fB\-S\fR, and keep going until you get the very first version of the block\&.
3652 Binary files are searched as well\&.
3655 \-G<regex>
3656 .RS 4
3657 Look for differences whose patch text contains added/removed lines that match <regex>\&.
3659 To illustrate the difference between
3660 \fB\-S<regex> \-\-pickaxe\-regex\fR
3662 \fB\-G<regex>\fR, consider a commit with the following diff in the same file:
3664 .if n \{\
3665 .RS 4
3668 +    return frotz(nitfol, two\->ptr, 1, 0);
3669 \&.\&.\&.
3670 \-    hit = frotz(nitfol, mf2\&.ptr, 1, 0);
3672 .if n \{\
3676 While
3677 \fBgit log \-G"frotz\e(nitfol"\fR
3678 will show this commit,
3679 \fBgit log \-S"frotz\e(nitfol" \-\-pickaxe\-regex\fR
3680 will not (because the number of occurrences of that string did not change)\&.
3682 Unless
3683 \fB\-\-text\fR
3684 is supplied patches of binary files without a textconv filter will be ignored\&.
3686 See the
3687 \fIpickaxe\fR
3688 entry in
3689 \fBgitdiffcore\fR(7)
3690 for more information\&.
3693 \-\-find\-object=<object\-id>
3694 .RS 4
3695 Look for differences that change the number of occurrences of the specified object\&. Similar to
3696 \fB\-S\fR, just the argument is different in that it doesn\(cqt search for a specific string but for a specific object id\&.
3698 The object can be a blob or a submodule commit\&. It implies the
3699 \fB\-t\fR
3700 option in
3701 \fBgit\-log\fR
3702 to also find trees\&.
3705 \-\-pickaxe\-all
3706 .RS 4
3707 When
3708 \fB\-S\fR
3710 \fB\-G\fR
3711 finds a change, show all the changes in that changeset, not just the files that contain the change in <string>\&.
3714 \-\-pickaxe\-regex
3715 .RS 4
3716 Treat the <string> given to
3717 \fB\-S\fR
3718 as an extended POSIX regular expression to match\&.
3721 \-O<orderfile>
3722 .RS 4
3723 Control the order in which files appear in the output\&. This overrides the
3724 \fBdiff\&.orderFile\fR
3725 configuration variable (see
3726 \fBgit-config\fR(1))\&. To cancel
3727 \fBdiff\&.orderFile\fR, use
3728 \fB\-O/dev/null\fR\&.
3730 The output order is determined by the order of glob patterns in <orderfile>\&. All files with pathnames that match the first pattern are output first, all files with pathnames that match the second pattern (but not the first) are output next, and so on\&. All files with pathnames that do not match any pattern are output last, as if there was an implicit match\-all pattern at the end of the file\&. If multiple pathnames have the same rank (they match the same pattern but no earlier patterns), their output order relative to each other is the normal order\&.
3732 <orderfile> is parsed as follows:
3734 .RS 4
3735 .ie n \{\
3736 \h'-04'\(bu\h'+03'\c
3738 .el \{\
3739 .sp -1
3740 .IP \(bu 2.3
3742 Blank lines are ignored, so they can be used as separators for readability\&.
3745 .RS 4
3746 .ie n \{\
3747 \h'-04'\(bu\h'+03'\c
3749 .el \{\
3750 .sp -1
3751 .IP \(bu 2.3
3753 Lines starting with a hash ("\fB#\fR") are ignored, so they can be used for comments\&. Add a backslash ("\fB\e\fR") to the beginning of the pattern if it starts with a hash\&.
3756 .RS 4
3757 .ie n \{\
3758 \h'-04'\(bu\h'+03'\c
3760 .el \{\
3761 .sp -1
3762 .IP \(bu 2.3
3764 Each other line contains a single pattern\&.
3767 Patterns have the same syntax and semantics as patterns used for fnmatch(3) without the FNM_PATHNAME flag, except a pathname also matches a pattern if removing any number of the final pathname components matches the pattern\&. For example, the pattern "\fBfoo*bar\fR" matches "\fBfooasdfbar\fR" and "\fBfoo/bar/baz/asdf\fR" but not "\fBfoobarx\fR"\&.
3770 \-\-skip\-to=<file>, \-\-rotate\-to=<file>
3771 .RS 4
3772 Discard the files before the named <file> from the output (i\&.e\&.
3773 \fIskip to\fR), or move them to the end of the output (i\&.e\&.
3774 \fIrotate to\fR)\&. These were invented primarily for use of the
3775 \fBgit difftool\fR
3776 command, and may not be very useful otherwise\&.
3780 .RS 4
3781 Swap two inputs; that is, show differences from index or on\-disk file to tree contents\&.
3784 \-\-relative[=<path>], \-\-no\-relative
3785 .RS 4
3786 When run from a subdirectory of the project, it can be told to exclude changes outside the directory and show pathnames relative to it with this option\&. When you are not in a subdirectory (e\&.g\&. in a bare repository), you can name which subdirectory to make the output relative to by giving a <path> as an argument\&.
3787 \fB\-\-no\-relative\fR
3788 can be used to countermand both
3789 \fBdiff\&.relative\fR
3790 config option and previous
3791 \fB\-\-relative\fR\&.
3794 \-a, \-\-text
3795 .RS 4
3796 Treat all files as text\&.
3799 \-\-ignore\-cr\-at\-eol
3800 .RS 4
3801 Ignore carriage\-return at the end of line when doing a comparison\&.
3804 \-\-ignore\-space\-at\-eol
3805 .RS 4
3806 Ignore changes in whitespace at EOL\&.
3809 \-b, \-\-ignore\-space\-change
3810 .RS 4
3811 Ignore changes in amount of whitespace\&. This ignores whitespace at line end, and considers all other sequences of one or more whitespace characters to be equivalent\&.
3814 \-w, \-\-ignore\-all\-space
3815 .RS 4
3816 Ignore whitespace when comparing lines\&. This ignores differences even if one line has whitespace where the other line has none\&.
3819 \-\-ignore\-blank\-lines
3820 .RS 4
3821 Ignore changes whose lines are all blank\&.
3824 \-I<regex>, \-\-ignore\-matching\-lines=<regex>
3825 .RS 4
3826 Ignore changes whose all lines match <regex>\&. This option may be specified more than once\&.
3829 \-\-inter\-hunk\-context=<lines>
3830 .RS 4
3831 Show the context between diff hunks, up to the specified number of lines, thereby fusing hunks that are close to each other\&. Defaults to
3832 \fBdiff\&.interHunkContext\fR
3833 or 0 if the config option is unset\&.
3836 \-W, \-\-function\-context
3837 .RS 4
3838 Show whole function as context lines for each change\&. The function names are determined in the same way as
3839 \fBgit diff\fR
3840 works out patch hunk headers (see
3841 \fIDefining a custom hunk\-header\fR
3843 \fBgitattributes\fR(5))\&.
3846 \-\-ext\-diff
3847 .RS 4
3848 Allow an external diff helper to be executed\&. If you set an external diff driver with
3849 \fBgitattributes\fR(5), you need to use this option with
3850 \fBgit-log\fR(1)
3851 and friends\&.
3854 \-\-no\-ext\-diff
3855 .RS 4
3856 Disallow external diff drivers\&.
3859 \-\-textconv, \-\-no\-textconv
3860 .RS 4
3861 Allow (or disallow) external text conversion filters to be run when comparing binary files\&. See
3862 \fBgitattributes\fR(5)
3863 for details\&. Because textconv filters are typically a one\-way conversion, the resulting diff is suitable for human consumption, but cannot be applied\&. For this reason, textconv filters are enabled by default only for
3864 \fBgit-diff\fR(1)
3866 \fBgit-log\fR(1), but not for
3867 \fBgit-format-patch\fR(1)
3868 or diff plumbing commands\&.
3871 \-\-ignore\-submodules[=<when>]
3872 .RS 4
3873 Ignore changes to submodules in the diff generation\&. <when> can be either "none", "untracked", "dirty" or "all", which is the default\&. Using "none" will consider the submodule modified when it either contains untracked or modified files or its HEAD differs from the commit recorded in the superproject and can be used to override any settings of the
3874 \fIignore\fR
3875 option in
3876 \fBgit-config\fR(1)
3878 \fBgitmodules\fR(5)\&. When "untracked" is used submodules are not considered dirty when they only contain untracked content (but they are still scanned for modified content)\&. Using "dirty" ignores all changes to the work tree of submodules, only changes to the commits stored in the superproject are shown (this was the behavior until 1\&.7\&.0)\&. Using "all" hides all changes to submodules\&.
3881 \-\-src\-prefix=<prefix>
3882 .RS 4
3883 Show the given source prefix instead of "a/"\&.
3886 \-\-dst\-prefix=<prefix>
3887 .RS 4
3888 Show the given destination prefix instead of "b/"\&.
3891 \-\-no\-prefix
3892 .RS 4
3893 Do not show any source or destination prefix\&.
3896 \-\-line\-prefix=<prefix>
3897 .RS 4
3898 Prepend an additional prefix to every line of output\&.
3901 \-\-ita\-invisible\-in\-index
3902 .RS 4
3903 By default entries added by "git add \-N" appear as an existing empty file in "git diff" and a new file in "git diff \-\-cached"\&. This option makes the entry appear as a new file in "git diff" and non\-existent in "git diff \-\-cached"\&. This option could be reverted with
3904 \fB\-\-ita\-visible\-in\-index\fR\&. Both options are experimental and could be removed in future\&.
3907 For more detailed explanation on these common options, see also \fBgitdiffcore\fR(7)\&.
3908 .SH "GENERATING PATCH TEXT WITH \-P"
3910 Running \fBgit-diff\fR(1), \fBgit-log\fR(1), \fBgit-show\fR(1), \fBgit-diff-index\fR(1), \fBgit-diff-tree\fR(1), or \fBgit-diff-files\fR(1) with the \fB\-p\fR option produces patch text\&. You can customize the creation of patch text via the \fBGIT_EXTERNAL_DIFF\fR and the \fBGIT_DIFF_OPTS\fR environment variables (see \fBgit\fR(1)), and the \fBdiff\fR attribute (see \fBgitattributes\fR(5))\&.
3912 What the \-p option produces is slightly different from the traditional diff format:
3914 .RS 4
3915 .ie n \{\
3916 \h'-04' 1.\h'+01'\c
3918 .el \{\
3919 .sp -1
3920 .IP "  1." 4.2
3922 It is preceded with a "git diff" header that looks like this:
3924 .if n \{\
3925 .RS 4
3928 diff \-\-git a/file1 b/file2
3930 .if n \{\
3935 \fBa/\fR
3937 \fBb/\fR
3938 filenames are the same unless rename/copy is involved\&. Especially, even for a creation or a deletion,
3939 \fB/dev/null\fR
3941 \fInot\fR
3942 used in place of the
3943 \fBa/\fR
3945 \fBb/\fR
3946 filenames\&.
3948 When rename/copy is involved,
3949 \fBfile1\fR
3951 \fBfile2\fR
3952 show the name of the source file of the rename/copy and the name of the file that rename/copy produces, respectively\&.
3955 .RS 4
3956 .ie n \{\
3957 \h'-04' 2.\h'+01'\c
3959 .el \{\
3960 .sp -1
3961 .IP "  2." 4.2
3963 It is followed by one or more extended header lines:
3965 .if n \{\
3966 .RS 4
3969 old mode <mode>
3970 new mode <mode>
3971 deleted file mode <mode>
3972 new file mode <mode>
3973 copy from <path>
3974 copy to <path>
3975 rename from <path>
3976 rename to <path>
3977 similarity index <number>
3978 dissimilarity index <number>
3979 index <hash>\&.\&.<hash> <mode>
3981 .if n \{\
3985 File modes are printed as 6\-digit octal numbers including the file type and file permission bits\&.
3987 Path names in extended headers do not include the
3988 \fBa/\fR
3990 \fBb/\fR
3991 prefixes\&.
3993 The similarity index is the percentage of unchanged lines, and the dissimilarity index is the percentage of changed lines\&. It is a rounded down integer, followed by a percent sign\&. The similarity index value of 100% is thus reserved for two equal files, while 100% dissimilarity means that no line from the old file made it into the new one\&.
3995 The index line includes the blob object names before and after the change\&. The <mode> is included if the file mode does not change; otherwise, separate lines indicate the old and the new mode\&.
3998 .RS 4
3999 .ie n \{\
4000 \h'-04' 3.\h'+01'\c
4002 .el \{\
4003 .sp -1
4004 .IP "  3." 4.2
4006 Pathnames with "unusual" characters are quoted as explained for the configuration variable
4007 \fBcore\&.quotePath\fR
4008 (see
4009 \fBgit-config\fR(1))\&.
4012 .RS 4
4013 .ie n \{\
4014 \h'-04' 4.\h'+01'\c
4016 .el \{\
4017 .sp -1
4018 .IP "  4." 4.2
4020 All the
4021 \fBfile1\fR
4022 files in the output refer to files before the commit, and all the
4023 \fBfile2\fR
4024 files refer to files after the commit\&. It is incorrect to apply each change to each file sequentially\&. For example, this patch will swap a and b:
4026 .if n \{\
4027 .RS 4
4030 diff \-\-git a/a b/b
4031 rename from a
4032 rename to b
4033 diff \-\-git a/b b/a
4034 rename from b
4035 rename to a
4037 .if n \{\
4042 .RS 4
4043 .ie n \{\
4044 \h'-04' 5.\h'+01'\c
4046 .el \{\
4047 .sp -1
4048 .IP "  5." 4.2
4050 Hunk headers mention the name of the function to which the hunk applies\&. See "Defining a custom hunk\-header" in
4051 \fBgitattributes\fR(5)
4052 for details of how to tailor to this to specific languages\&.
4054 .SH "COMBINED DIFF FORMAT"
4056 Any diff\-generating command can take the \fB\-c\fR or \fB\-\-cc\fR option to produce a \fIcombined diff\fR when showing a merge\&. This is the default format when showing merges with \fBgit-diff\fR(1) or \fBgit-show\fR(1)\&. Note also that you can give suitable \fB\-\-diff\-merges\fR option to any of these commands to force generation of diffs in specific format\&.
4058 A "combined diff" format looks like this:
4060 .if n \{\
4061 .RS 4
4064 diff \-\-combined describe\&.c
4065 index fabadb8,cc95eb0\&.\&.4866510
4066 \-\-\- a/describe\&.c
4067 +++ b/describe\&.c
4068 @@@ \-98,20 \-98,12 +98,20 @@@
4069         return (a_date > b_date) ? \-1 : (a_date == b_date) ? 0 : 1;
4070   }
4072 \- static void describe(char *arg)
4073  \-static void describe(struct commit *cmit, int last_one)
4074 ++static void describe(char *arg, int last_one)
4075   {
4076  +      unsigned char sha1[20];
4077  +      struct commit *cmit;
4078         struct commit_list *list;
4079         static int initialized = 0;
4080         struct commit_name *n;
4082  +      if (get_sha1(arg, sha1) < 0)
4083  +              usage(describe_usage);
4084  +      cmit = lookup_commit_reference(sha1);
4085  +      if (!cmit)
4086  +              usage(describe_usage);
4088         if (!initialized) {
4089                 initialized = 1;
4090                 for_each_ref(get_name);
4092 .if n \{\
4098 .RS 4
4099 .ie n \{\
4100 \h'-04' 1.\h'+01'\c
4102 .el \{\
4103 .sp -1
4104 .IP "  1." 4.2
4106 It is preceded with a "git diff" header, that looks like this (when the
4107 \fB\-c\fR
4108 option is used):
4110 .if n \{\
4111 .RS 4
4114 diff \-\-combined file
4116 .if n \{\
4120 or like this (when the
4121 \fB\-\-cc\fR
4122 option is used):
4124 .if n \{\
4125 .RS 4
4128 diff \-\-cc file
4130 .if n \{\
4135 .RS 4
4136 .ie n \{\
4137 \h'-04' 2.\h'+01'\c
4139 .el \{\
4140 .sp -1
4141 .IP "  2." 4.2
4143 It is followed by one or more extended header lines (this example shows a merge with two parents):
4145 .if n \{\
4146 .RS 4
4149 index <hash>,<hash>\&.\&.<hash>
4150 mode <mode>,<mode>\&.\&.<mode>
4151 new file mode <mode>
4152 deleted file mode <mode>,<mode>
4154 .if n \{\
4159 \fBmode <mode>,<mode>\&.\&.<mode>\fR
4160 line appears only if at least one of the <mode> is different from the rest\&. Extended headers with information about detected contents movement (renames and copying detection) are designed to work with diff of two <tree\-ish> and are not used by combined diff format\&.
4163 .RS 4
4164 .ie n \{\
4165 \h'-04' 3.\h'+01'\c
4167 .el \{\
4168 .sp -1
4169 .IP "  3." 4.2
4171 It is followed by two\-line from\-file/to\-file header
4173 .if n \{\
4174 .RS 4
4177 \-\-\- a/file
4178 +++ b/file
4180 .if n \{\
4184 Similar to two\-line header for traditional
4185 \fIunified\fR
4186 diff format,
4187 \fB/dev/null\fR
4188 is used to signal created or deleted files\&.
4190 However, if the \-\-combined\-all\-paths option is provided, instead of a two\-line from\-file/to\-file you get a N+1 line from\-file/to\-file header, where N is the number of parents in the merge commit
4192 .if n \{\
4193 .RS 4
4196 \-\-\- a/file
4197 \-\-\- a/file
4198 \-\-\- a/file
4199 +++ b/file
4201 .if n \{\
4205 This extended format can be useful if rename or copy detection is active, to allow you to see the original name of the file in different parents\&.
4208 .RS 4
4209 .ie n \{\
4210 \h'-04' 4.\h'+01'\c
4212 .el \{\
4213 .sp -1
4214 .IP "  4." 4.2
4216 Chunk header format is modified to prevent people from accidentally feeding it to
4217 \fBpatch \-p1\fR\&. Combined diff format was created for review of merge commit changes, and was not meant to be applied\&. The change is similar to the change in the extended
4218 \fIindex\fR
4219 header:
4221 .if n \{\
4222 .RS 4
4225 @@@ <from\-file\-range> <from\-file\-range> <to\-file\-range> @@@
4227 .if n \{\
4231 There are (number of parents + 1)
4232 \fB@\fR
4233 characters in the chunk header for combined diff format\&.
4236 Unlike the traditional \fIunified\fR diff format, which shows two files A and B with a single column that has \fB\-\fR (minus \(em appears in A but removed in B), \fB+\fR (plus \(em missing in A but added to B), or \fB" "\fR (space \(em unchanged) prefix, this format compares two or more files file1, file2,\&... with one file X, and shows how X differs from each of fileN\&. One column for each of fileN is prepended to the output line to note how X\(cqs line is different from it\&.
4238 A \fB\-\fR character in the column N means that the line appears in fileN but it does not appear in the result\&. A \fB+\fR character in the column N means that the line appears in the result, and fileN does not have that line (in other words, the line was added, from the point of view of that parent)\&.
4240 In the above example output, the function signature was changed from both files (hence two \fB\-\fR removals from both file1 and file2, plus \fB++\fR to mean one line that was added does not appear in either file1 or file2)\&. Also eight other lines are the same from file1 but do not appear in file2 (hence prefixed with \fB+\fR)\&.
4242 When shown by \fBgit diff\-tree \-c\fR, it compares the parents of a merge commit with the merge result (i\&.e\&. file1\&.\&.fileN are the parents)\&. When shown by \fBgit diff\-files \-c\fR, it compares the two unresolved merge parents with the working tree file (i\&.e\&. file1 is stage 2 aka "our version", file2 is stage 3 aka "their version")\&.
4243 .SH "EXAMPLES"
4245 \fBgit log \-\-no\-merges\fR
4246 .RS 4
4247 Show the whole commit history, but skip any merges
4250 \fBgit log v2\&.6\&.12\&.\&. include/scsi drivers/scsi\fR
4251 .RS 4
4252 Show all commits since version
4253 \fIv2\&.6\&.12\fR
4254 that changed any file in the
4255 \fBinclude/scsi\fR
4257 \fBdrivers/scsi\fR
4258 subdirectories
4261 \fBgit log \-\-since="2 weeks ago" \-\- gitk\fR
4262 .RS 4
4263 Show the changes during the last two weeks to the file
4264 \fIgitk\fR\&. The
4265 \fB\-\-\fR
4266 is necessary to avoid confusion with the
4267 \fBbranch\fR
4268 named
4269 \fIgitk\fR
4272 \fBgit log \-\-name\-status release\&.\&.test\fR
4273 .RS 4
4274 Show the commits that are in the "test" branch but not yet in the "release" branch, along with the list of paths each commit modifies\&.
4277 \fBgit log \-\-follow builtin/rev\-list\&.c\fR
4278 .RS 4
4279 Shows the commits that changed
4280 \fBbuiltin/rev\-list\&.c\fR, including those commits that occurred before the file was given its present name\&.
4283 \fBgit log \-\-branches \-\-not \-\-remotes=origin\fR
4284 .RS 4
4285 Shows all commits that are in any of local branches but not in any of remote\-tracking branches for
4286 \fIorigin\fR
4287 (what you have that origin doesn\(cqt)\&.
4290 \fBgit log master \-\-not \-\-remotes=*/master\fR
4291 .RS 4
4292 Shows all commits that are in local master but not in any remote repository master branches\&.
4295 \fBgit log \-p \-m \-\-first\-parent\fR
4296 .RS 4
4297 Shows the history including change diffs, but only from the \(lqmain branch\(rq perspective, skipping commits that come from merged branches, and showing full diffs of changes introduced by the merges\&. This makes sense only when following a strict policy of merging all topic branches when staying on a single integration branch\&.
4300 \fBgit log \-L \(aq/int main/\(aq,/^}/:main\&.c\fR
4301 .RS 4
4302 Shows how the function
4303 \fBmain()\fR
4304 in the file
4305 \fBmain\&.c\fR
4306 evolved over time\&.
4309 \fBgit log \-3\fR
4310 .RS 4
4311 Limits the number of commits to show to 3\&.
4313 .SH "DISCUSSION"
4315 Git is to some extent character encoding agnostic\&.
4317 .RS 4
4318 .ie n \{\
4319 \h'-04'\(bu\h'+03'\c
4321 .el \{\
4322 .sp -1
4323 .IP \(bu 2.3
4325 The contents of the blob objects are uninterpreted sequences of bytes\&. There is no encoding translation at the core level\&.
4328 .RS 4
4329 .ie n \{\
4330 \h'-04'\(bu\h'+03'\c
4332 .el \{\
4333 .sp -1
4334 .IP \(bu 2.3
4336 Path names are encoded in UTF\-8 normalization form C\&. This applies to tree objects, the index file, ref names, as well as path names in command line arguments, environment variables and config files (\fB\&.git/config\fR
4337 (see
4338 \fBgit-config\fR(1)),
4339 \fBgitignore\fR(5),
4340 \fBgitattributes\fR(5)
4342 \fBgitmodules\fR(5))\&.
4344 Note that Git at the core level treats path names simply as sequences of non\-NUL bytes, there are no path name encoding conversions (except on Mac and Windows)\&. Therefore, using non\-ASCII path names will mostly work even on platforms and file systems that use legacy extended ASCII encodings\&. However, repositories created on such systems will not work properly on UTF\-8\-based systems (e\&.g\&. Linux, Mac, Windows) and vice versa\&. Additionally, many Git\-based tools simply assume path names to be UTF\-8 and will fail to display other encodings correctly\&.
4347 .RS 4
4348 .ie n \{\
4349 \h'-04'\(bu\h'+03'\c
4351 .el \{\
4352 .sp -1
4353 .IP \(bu 2.3
4355 Commit log messages are typically encoded in UTF\-8, but other extended ASCII encodings are also supported\&. This includes ISO\-8859\-x, CP125x and many others, but
4356 \fInot\fR
4357 UTF\-16/32, EBCDIC and CJK multi\-byte encodings (GBK, Shift\-JIS, Big5, EUC\-x, CP9xx etc\&.)\&.
4360 Although we encourage that the commit log messages are encoded in UTF\-8, both the core and Git Porcelain are designed not to force UTF\-8 on projects\&. If all participants of a particular project find it more convenient to use legacy encodings, Git does not forbid it\&. However, there are a few things to keep in mind\&.
4362 .RS 4
4363 .ie n \{\
4364 \h'-04' 1.\h'+01'\c
4366 .el \{\
4367 .sp -1
4368 .IP "  1." 4.2
4370 \fIgit commit\fR
4372 \fIgit commit\-tree\fR
4373 issues a warning if the commit log message given to it does not look like a valid UTF\-8 string, unless you explicitly say your project uses a legacy encoding\&. The way to say this is to have
4374 \fBi18n\&.commitEncoding\fR
4376 \fB\&.git/config\fR
4377 file, like this:
4379 .if n \{\
4380 .RS 4
4383 [i18n]
4384         commitEncoding = ISO\-8859\-1
4386 .if n \{\
4390 Commit objects created with the above setting record the value of
4391 \fBi18n\&.commitEncoding\fR
4392 in its
4393 \fBencoding\fR
4394 header\&. This is to help other people who look at them later\&. Lack of this header implies that the commit log message is encoded in UTF\-8\&.
4397 .RS 4
4398 .ie n \{\
4399 \h'-04' 2.\h'+01'\c
4401 .el \{\
4402 .sp -1
4403 .IP "  2." 4.2
4405 \fIgit log\fR,
4406 \fIgit show\fR,
4407 \fIgit blame\fR
4408 and friends look at the
4409 \fBencoding\fR
4410 header of a commit object, and try to re\-code the log message into UTF\-8 unless otherwise specified\&. You can specify the desired output encoding with
4411 \fBi18n\&.logOutputEncoding\fR
4413 \fB\&.git/config\fR
4414 file, like this:
4416 .if n \{\
4417 .RS 4
4420 [i18n]
4421         logOutputEncoding = ISO\-8859\-1
4423 .if n \{\
4427 If you do not have this configuration variable, the value of
4428 \fBi18n\&.commitEncoding\fR
4429 is used instead\&.
4432 Note that we deliberately chose not to re\-code the commit log message when a commit is made to force UTF\-8 at the commit object level, because re\-coding to UTF\-8 is not necessarily a reversible operation\&.
4433 .SH "CONFIGURATION"
4435 See \fBgit-config\fR(1) for core variables and \fBgit-diff\fR(1) for settings related to diff generation\&.
4437 format\&.pretty
4438 .RS 4
4439 Default for the
4440 \fB\-\-format\fR
4441 option\&. (See
4442 \fIPretty Formats\fR
4443 above\&.) Defaults to
4444 \fBmedium\fR\&.
4447 i18n\&.logOutputEncoding
4448 .RS 4
4449 Encoding to use when displaying logs\&. (See
4450 \fIDiscussion\fR
4451 above\&.) Defaults to the value of
4452 \fBi18n\&.commitEncoding\fR
4453 if set, and UTF\-8 otherwise\&.
4456 Everything above this line in this section isn\(cqt included from the \fBgit-config\fR(1) documentation\&. The content that follows is the same as what\(cqs found there:
4458 log\&.abbrevCommit
4459 .RS 4
4460 If true, makes
4461 \fBgit-log\fR(1),
4462 \fBgit-show\fR(1), and
4463 \fBgit-whatchanged\fR(1)
4464 assume
4465 \fB\-\-abbrev\-commit\fR\&. You may override this option with
4466 \fB\-\-no\-abbrev\-commit\fR\&.
4469 log\&.date
4470 .RS 4
4471 Set the default date\-time mode for the
4472 \fIlog\fR
4473 command\&. Setting a value for log\&.date is similar to using
4474 \fIgit log\fR\(aqs
4475 \fB\-\-date\fR
4476 option\&. See
4477 \fBgit-log\fR(1)
4478 for details\&.
4480 If the format is set to "auto:foo" and the pager is in use, format "foo" will be the used for the date format\&. Otherwise "default" will be used\&.
4483 log\&.decorate
4484 .RS 4
4485 Print out the ref names of any commits that are shown by the log command\&. If
4486 \fIshort\fR
4487 is specified, the ref name prefixes
4488 \fIrefs/heads/\fR,
4489 \fIrefs/tags/\fR
4491 \fIrefs/remotes/\fR
4492 will not be printed\&. If
4493 \fIfull\fR
4494 is specified, the full ref name (including prefix) will be printed\&. If
4495 \fIauto\fR
4496 is specified, then if the output is going to a terminal, the ref names are shown as if
4497 \fIshort\fR
4498 were given, otherwise no ref names are shown\&. This is the same as the
4499 \fB\-\-decorate\fR
4500 option of the
4501 \fBgit log\fR\&.
4504 log\&.initialDecorationSet
4505 .RS 4
4506 By default,
4507 \fBgit log\fR
4508 only shows decorations for certain known ref namespaces\&. If
4509 \fIall\fR
4510 is specified, then show all refs as decorations\&.
4513 log\&.excludeDecoration
4514 .RS 4
4515 Exclude the specified patterns from the log decorations\&. This is similar to the
4516 \fB\-\-decorate\-refs\-exclude\fR
4517 command\-line option, but the config option can be overridden by the
4518 \fB\-\-decorate\-refs\fR
4519 option\&.
4522 log\&.diffMerges
4523 .RS 4
4524 Set diff format to be used when
4525 \fB\-\-diff\-merges=on\fR
4526 is specified, see
4527 \fB\-\-diff\-merges\fR
4529 \fBgit-log\fR(1)
4530 for details\&. Defaults to
4531 \fBseparate\fR\&.
4534 log\&.follow
4535 .RS 4
4537 \fBtrue\fR,
4538 \fBgit log\fR
4539 will act as if the
4540 \fB\-\-follow\fR
4541 option was used when a single <path> is given\&. This has the same limitations as
4542 \fB\-\-follow\fR, i\&.e\&. it cannot be used to follow multiple files and does not work well on non\-linear history\&.
4545 log\&.graphColors
4546 .RS 4
4547 A list of colors, separated by commas, that can be used to draw history lines in
4548 \fBgit log \-\-graph\fR\&.
4551 log\&.showRoot
4552 .RS 4
4553 If true, the initial commit will be shown as a big creation event\&. This is equivalent to a diff against an empty tree\&. Tools like
4554 \fBgit-log\fR(1)
4556 \fBgit-whatchanged\fR(1), which normally hide the root commit will now show it\&. True by default\&.
4559 log\&.showSignature
4560 .RS 4
4561 If true, makes
4562 \fBgit-log\fR(1),
4563 \fBgit-show\fR(1), and
4564 \fBgit-whatchanged\fR(1)
4565 assume
4566 \fB\-\-show\-signature\fR\&.
4569 log\&.mailmap
4570 .RS 4
4571 If true, makes
4572 \fBgit-log\fR(1),
4573 \fBgit-show\fR(1), and
4574 \fBgit-whatchanged\fR(1)
4575 assume
4576 \fB\-\-use\-mailmap\fR, otherwise assume
4577 \fB\-\-no\-use\-mailmap\fR\&. True by default\&.
4580 notes\&.mergeStrategy
4581 .RS 4
4582 Which merge strategy to choose by default when resolving notes conflicts\&. Must be one of
4583 \fBmanual\fR,
4584 \fBours\fR,
4585 \fBtheirs\fR,
4586 \fBunion\fR, or
4587 \fBcat_sort_uniq\fR\&. Defaults to
4588 \fBmanual\fR\&. See "NOTES MERGE STRATEGIES" section of
4589 \fBgit-notes\fR(1)
4590 for more information on each strategy\&.
4592 This setting can be overridden by passing the
4593 \fB\-\-strategy\fR
4594 option to
4595 \fBgit-notes\fR(1)\&.
4598 notes\&.<name>\&.mergeStrategy
4599 .RS 4
4600 Which merge strategy to choose when doing a notes merge into refs/notes/<name>\&. This overrides the more general "notes\&.mergeStrategy"\&. See the "NOTES MERGE STRATEGIES" section in
4601 \fBgit-notes\fR(1)
4602 for more information on the available strategies\&.
4605 notes\&.displayRef
4606 .RS 4
4607 Which ref (or refs, if a glob or specified more than once), in addition to the default set by
4608 \fBcore\&.notesRef\fR
4610 \fBGIT_NOTES_REF\fR, to read notes from when showing commit messages with the
4611 \fIgit log\fR
4612 family of commands\&.
4614 This setting can be overridden with the
4615 \fBGIT_NOTES_DISPLAY_REF\fR
4616 environment variable, which must be a colon separated list of refs or globs\&.
4618 A warning will be issued for refs that do not exist, but a glob that does not match any refs is silently ignored\&.
4620 This setting can be disabled by the
4621 \fB\-\-no\-notes\fR
4622 option to the
4623 \fIgit log\fR
4624 family of commands, or by the
4625 \fB\-\-notes=<ref>\fR
4626 option accepted by those commands\&.
4628 The effective value of "core\&.notesRef" (possibly overridden by GIT_NOTES_REF) is also implicitly added to the list of refs to be displayed\&.
4631 notes\&.rewrite\&.<command>
4632 .RS 4
4633 When rewriting commits with <command> (currently
4634 \fBamend\fR
4636 \fBrebase\fR), if this variable is
4637 \fBfalse\fR, git will not copy notes from the original to the rewritten commit\&. Defaults to
4638 \fBtrue\fR\&. See also "\fBnotes\&.rewriteRef\fR" below\&.
4640 This setting can be overridden with the
4641 \fBGIT_NOTES_REWRITE_REF\fR
4642 environment variable, which must be a colon separated list of refs or globs\&.
4645 notes\&.rewriteMode
4646 .RS 4
4647 When copying notes during a rewrite (see the "notes\&.rewrite\&.<command>" option), determines what to do if the target commit already has a note\&. Must be one of
4648 \fBoverwrite\fR,
4649 \fBconcatenate\fR,
4650 \fBcat_sort_uniq\fR, or
4651 \fBignore\fR\&. Defaults to
4652 \fBconcatenate\fR\&.
4654 This setting can be overridden with the
4655 \fBGIT_NOTES_REWRITE_MODE\fR
4656 environment variable\&.
4659 notes\&.rewriteRef
4660 .RS 4
4661 When copying notes during a rewrite, specifies the (fully qualified) ref whose notes should be copied\&. May be a glob, in which case notes in all matching refs will be copied\&. You may also specify this configuration several times\&.
4663 Does not have a default value; you must configure this variable to enable note rewriting\&. Set it to
4664 \fBrefs/notes/commits\fR
4665 to enable rewriting for the default commit notes\&.
4667 Can be overridden with the
4668 \fBGIT_NOTES_REWRITE_REF\fR
4669 environment variable\&. See
4670 \fBnotes\&.rewrite\&.<command>\fR
4671 above for a further description of its format\&.
4673 .SH "GIT"
4675 Part of the \fBgit\fR(1) suite