Autogenerated manpages for v2.45.2-648-g1e158
[git-manpages.git] / man1 / git-log.1
blob63ac55f75ce9a524e41fa77ca2d87ddc2b8e3d6b
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: 2024-06-24
6 .\"    Manual: Git Manual
7 .\"    Source: Git 2.45.2.648.g1e1586e4ed
8 .\"  Language: English
9 .\"
10 .TH "GIT\-LOG" "1" "2024\-06\-24" "Git 2\&.45\&.2\&.648\&.g1e1586" "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 a 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 a 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\&. When used on the command line before \-\-stdin, the revisions passed through stdin will not be affected by it\&. Conversely, when passed via standard input, the revisions passed on the command line will not be affected by it\&.
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=[fetch|receive|uploadpack]
576 .RS 4
577 Do not include refs that would be hidden by
578 \fBgit\-fetch\fR,
579 \fBgit\-receive\-pack\fR
581 \fBgit\-upload\-pack\fR
582 by consulting the appropriate
583 \fBfetch\&.hideRefs\fR,
584 \fBreceive\&.hideRefs\fR
586 \fBuploadpack\&.hideRefs\fR
587 configuration along with
588 \fBtransfer\&.hideRefs\fR
589 (see
590 \fBgit-config\fR(1))\&. This option affects the next pseudo\-ref option
591 \fB\-\-all\fR
593 \fB\-\-glob\fR
594 and is cleared after processing them\&.
597 \-\-reflog
598 .RS 4
599 Pretend as if all objects mentioned by reflogs are listed on the command line as
600 \fB<commit>\fR\&.
603 \-\-alternate\-refs
604 .RS 4
605 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
606 \fBobjects/info/alternates\fR\&. The set of included objects may be modified by
607 \fBcore\&.alternateRefsCommand\fR, etc\&. See
608 \fBgit-config\fR(1)\&.
611 \-\-single\-worktree
612 .RS 4
613 By default, all working trees will be examined by the following options when there are more than one (see
614 \fBgit-worktree\fR(1)):
615 \fB\-\-all\fR,
616 \fB\-\-reflog\fR
618 \fB\-\-indexed\-objects\fR\&. This option forces them to examine the current working tree only\&.
621 \-\-ignore\-missing
622 .RS 4
623 Upon seeing an invalid object name in the input, pretend as if the bad input was not given\&.
626 \-\-bisect
627 .RS 4
628 Pretend as if the bad bisection ref
629 \fBrefs/bisect/bad\fR
630 was listed and as if it was followed by
631 \fB\-\-not\fR
632 and the good bisection refs
633 \fBrefs/bisect/good\-*\fR
634 on the command line\&.
637 \-\-stdin
638 .RS 4
639 In addition to getting arguments from the command line, read them from standard input as well\&. This accepts commits and pseudo\-options like
640 \fB\-\-all\fR
642 \fB\-\-glob=\fR\&. When a
643 \fB\-\-\fR
644 separator is seen, the following input is treated as paths and used to limit the result\&. Flags like
645 \fB\-\-not\fR
646 which are read via standard input are only respected for arguments passed in the same way and will not influence any subsequent command line arguments\&.
649 \-\-cherry\-mark
650 .RS 4
651 Like
652 \fB\-\-cherry\-pick\fR
653 (see below) but mark equivalent commits with
654 \fB=\fR
655 rather than omitting them, and inequivalent ones with
656 \fB+\fR\&.
659 \-\-cherry\-pick
660 .RS 4
661 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\&.
663 For example, if you have two branches,
664 \fBA\fR
666 \fBB\fR, a usual way to list all commits on only one side of them is with
667 \fB\-\-left\-right\fR
668 (see the example below in the description of the
669 \fB\-\-left\-right\fR
670 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\&.
673 \-\-left\-only, \-\-right\-only
674 .RS 4
675 List only commits on the respective side of a symmetric difference, i\&.e\&. only those which would be marked
676 \fB<\fR
677 resp\&.
678 \fB>\fR
680 \fB\-\-left\-right\fR\&.
682 For example,
683 \fB\-\-cherry\-pick \-\-right\-only A\&.\&.\&.B\fR
684 omits those commits from
685 \fBB\fR
686 which are in
687 \fBA\fR
688 or are patch\-equivalent to a commit in
689 \fBA\fR\&. In other words, this lists the
690 \fB+\fR
691 commits from
692 \fBgit cherry A B\fR\&. More precisely,
693 \fB\-\-cherry\-pick \-\-right\-only \-\-no\-merges\fR
694 gives the exact list\&.
697 \-\-cherry
698 .RS 4
699 A synonym for
700 \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
701 \fBgit log \-\-cherry upstream\&.\&.\&.mybranch\fR, similar to
702 \fBgit cherry upstream mybranch\fR\&.
705 \-g, \-\-walk\-reflogs
706 .RS 4
707 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,
708 \fI^commit\fR,
709 \fIcommit1\&.\&.commit2\fR, and
710 \fIcommit1\&.\&.\&.commit2\fR
711 notations cannot be used)\&.
713 With
714 \fB\-\-pretty\fR
715 format other than
716 \fBoneline\fR
718 \fBreference\fR
719 (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
720 \fBref@{<Nth>}\fR
721 (where
722 \fI<Nth>\fR
723 is the reverse\-chronological index in the reflog) or as
724 \fBref@{<timestamp>}\fR
725 (with the
726 \fI<timestamp>\fR
727 for that entry), depending on a few rules:
729 .RS 4
730 .ie n \{\
731 \h'-04' 1.\h'+01'\c
733 .el \{\
734 .sp -1
735 .IP "  1." 4.2
737 If the starting point is specified as
738 \fBref@{<Nth>}\fR, show the index format\&.
741 .RS 4
742 .ie n \{\
743 \h'-04' 2.\h'+01'\c
745 .el \{\
746 .sp -1
747 .IP "  2." 4.2
749 If the starting point was specified as
750 \fBref@{now}\fR, show the timestamp format\&.
753 .RS 4
754 .ie n \{\
755 \h'-04' 3.\h'+01'\c
757 .el \{\
758 .sp -1
759 .IP "  3." 4.2
761 If neither was used, but
762 \fB\-\-date\fR
763 was given on the command line, show the timestamp in the format requested by
764 \fB\-\-date\fR\&.
767 .RS 4
768 .ie n \{\
769 \h'-04' 4.\h'+01'\c
771 .el \{\
772 .sp -1
773 .IP "  4." 4.2
775 Otherwise, show the index format\&.
778 Under
779 \fB\-\-pretty=oneline\fR, the commit message is prefixed with this information on the same line\&. This option cannot be combined with
780 \fB\-\-reverse\fR\&. See also
781 \fBgit-reflog\fR(1)\&.
783 Under
784 \fB\-\-pretty=reference\fR, this information will not be shown at all\&.
787 \-\-merge
788 .RS 4
789 Show commits touching conflicted paths in the range
790 \fBHEAD\&.\&.\&.<other>\fR, where
791 \fB<other>\fR
792 is the first existing pseudoref in
793 \fBMERGE_HEAD\fR,
794 \fBCHERRY_PICK_HEAD\fR,
795 \fBREVERT_HEAD\fR
797 \fBREBASE_HEAD\fR\&. Only works when the index has unmerged entries\&. This option can be used to show relevant commits when resolving conflicts from a 3\-way merge\&.
800 \-\-boundary
801 .RS 4
802 Output excluded boundary commits\&. Boundary commits are prefixed with
803 \fB\-\fR\&.
805 .SS "History Simplification"
807 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\&.
809 The following options select the commits to be shown:
811 <paths>
812 .RS 4
813 Commits modifying the given <paths> are selected\&.
816 \-\-simplify\-by\-decoration
817 .RS 4
818 Commits that are referred by some branch or tag are selected\&.
821 Note that extra commits can be shown to give a meaningful history\&.
823 The following options affect the way the simplification is performed:
825 Default mode
826 .RS 4
827 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)
830 \-\-show\-pulls
831 .RS 4
832 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\&.
835 \-\-full\-history
836 .RS 4
837 Same as the default mode, but does not prune some history\&.
840 \-\-dense
841 .RS 4
842 Only the selected commits are shown, plus some to have a meaningful history\&.
845 \-\-sparse
846 .RS 4
847 All commits in the simplified history are shown\&.
850 \-\-simplify\-merges
851 .RS 4
852 Additional option to
853 \fB\-\-full\-history\fR
854 to remove some needless merges from the resulting history, as there are no selected commits contributing to this merge\&.
857 \-\-ancestry\-path[=<commit>]
858 .RS 4
859 When given a range of commits to display (e\&.g\&.
860 \fIcommit1\&.\&.commit2\fR
862 \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
863 \fIcommit1\fR
864 (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\&.
867 A more detailed explanation follows\&.
869 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\&.)
871 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:
873 .if n \{\
874 .RS 4
877           \&.\-A\-\-\-M\-\-\-N\-\-\-O\-\-\-P\-\-\-Q
878          /     /   /   /   /   /
879         I     B   C   D   E   Y
880          \e   /   /   /   /   /
881           `\-\-\-\-\-\-\-\-\-\-\-\-\-\*(Aq   X
883 .if n \{\
888 The horizontal line of history A\-\-\-Q is taken to be the first parent of each merge\&. The commits are:
890 .RS 4
891 .ie n \{\
892 \h'-04'\(bu\h'+03'\c
894 .el \{\
895 .sp -1
896 .IP \(bu 2.3
898 \fBI\fR
899 is the initial commit, in which
900 \fBfoo\fR
901 exists with contents \(lqasdf\(rq, and a file
902 \fBquux\fR
903 exists with contents \(lqquux\(rq\&. Initial commits are compared to an empty tree, so
904 \fBI\fR
905 is !TREESAME\&.
908 .RS 4
909 .ie n \{\
910 \h'-04'\(bu\h'+03'\c
912 .el \{\
913 .sp -1
914 .IP \(bu 2.3
917 \fBA\fR,
918 \fBfoo\fR
919 contains just \(lqfoo\(rq\&.
922 .RS 4
923 .ie n \{\
924 \h'-04'\(bu\h'+03'\c
926 .el \{\
927 .sp -1
928 .IP \(bu 2.3
930 \fBB\fR
931 contains the same change as
932 \fBA\fR\&. Its merge
933 \fBM\fR
934 is trivial and hence TREESAME to all parents\&.
937 .RS 4
938 .ie n \{\
939 \h'-04'\(bu\h'+03'\c
941 .el \{\
942 .sp -1
943 .IP \(bu 2.3
945 \fBC\fR
946 does not change
947 \fBfoo\fR, but its merge
948 \fBN\fR
949 changes it to \(lqfoobar\(rq, so it is not TREESAME to any parent\&.
952 .RS 4
953 .ie n \{\
954 \h'-04'\(bu\h'+03'\c
956 .el \{\
957 .sp -1
958 .IP \(bu 2.3
960 \fBD\fR
961 sets
962 \fBfoo\fR
963 to \(lqbaz\(rq\&. Its merge
964 \fBO\fR
965 combines the strings from
966 \fBN\fR
968 \fBD\fR
969 to \(lqfoobarbaz\(rq; i\&.e\&., it is not TREESAME to any parent\&.
972 .RS 4
973 .ie n \{\
974 \h'-04'\(bu\h'+03'\c
976 .el \{\
977 .sp -1
978 .IP \(bu 2.3
980 \fBE\fR
981 changes
982 \fBquux\fR
983 to \(lqxyzzy\(rq, and its merge
984 \fBP\fR
985 combines the strings to \(lqquux xyzzy\(rq\&.
986 \fBP\fR
987 is TREESAME to
988 \fBO\fR, but not to
989 \fBE\fR\&.
992 .RS 4
993 .ie n \{\
994 \h'-04'\(bu\h'+03'\c
996 .el \{\
997 .sp -1
998 .IP \(bu 2.3
1000 \fBX\fR
1001 is an independent root commit that added a new file
1002 \fBside\fR, and
1003 \fBY\fR
1004 modified it\&.
1005 \fBY\fR
1006 is TREESAME to
1007 \fBX\fR\&. Its merge
1008 \fBQ\fR
1009 added
1010 \fBside\fR
1012 \fBP\fR, and
1013 \fBQ\fR
1014 is TREESAME to
1015 \fBP\fR, but not to
1016 \fBY\fR\&.
1019 \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\&.
1021 Default mode
1022 .RS 4
1023 Commits are included if they are not TREESAME to any parent (though this can be changed, see
1024 \fB\-\-sparse\fR
1025 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\&.
1027 This results in:
1029 .if n \{\
1030 .RS 4
1033           \&.\-A\-\-\-N\-\-\-O
1034          /     /   /
1035         I\-\-\-\-\-\-\-\-\-D
1037 .if n \{\
1041 Note how the rule to only follow the TREESAME parent, if one is available, removed
1042 \fBB\fR
1043 from consideration entirely\&.
1044 \fBC\fR
1045 was considered via
1046 \fBN\fR, but is TREESAME\&. Root commits are compared to an empty tree, so
1047 \fBI\fR
1048 is !TREESAME\&.
1050 Parent/child relations are only visible with
1051 \fB\-\-parents\fR, but that does not affect the commits selected in default mode, so we have shown the parent lines\&.
1054 \-\-full\-history without parent rewriting
1055 .RS 4
1056 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
1058 .if n \{\
1059 .RS 4
1062         I  A  B  N  D  O  P  Q
1064 .if n \{\
1068 \fBM\fR
1069 was excluded because it is TREESAME to both parents\&.
1070 \fBE\fR,
1071 \fBC\fR
1073 \fBB\fR
1074 were all walked, but only
1075 \fBB\fR
1076 was !TREESAME, so the others do not appear\&.
1078 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\&.
1081 \-\-full\-history with parent rewriting
1082 .RS 4
1083 Ordinary commits are only included if they are !TREESAME (though this can be changed, see
1084 \fB\-\-sparse\fR
1085 below)\&.
1087 Merges are always included\&. However, their parent list is rewritten: Along each parent, prune away commits that are not included themselves\&. This results in
1089 .if n \{\
1090 .RS 4
1093           \&.\-A\-\-\-M\-\-\-N\-\-\-O\-\-\-P\-\-\-Q
1094          /     /   /   /   /
1095         I     B   /   D   /
1096          \e   /   /   /   /
1097           `\-\-\-\-\-\-\-\-\-\-\-\-\-\*(Aq
1099 .if n \{\
1103 Compare to
1104 \fB\-\-full\-history\fR
1105 without rewriting above\&. Note that
1106 \fBE\fR
1107 was pruned away because it is TREESAME, but the parent list of P was rewritten to contain
1108 \fBE\fR\*(Aqs parent
1109 \fBI\fR\&. The same happened for
1110 \fBC\fR
1112 \fBN\fR, and
1113 \fBX\fR,
1114 \fBY\fR
1116 \fBQ\fR\&.
1119 In addition to the above settings, you can change whether TREESAME affects inclusion:
1121 \-\-dense
1122 .RS 4
1123 Commits that are walked are included if they are not TREESAME to any parent\&.
1126 \-\-sparse
1127 .RS 4
1128 All commits that are walked are included\&.
1130 Note that without
1131 \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\&.
1134 \-\-simplify\-merges
1135 .RS 4
1136 First, build a history graph in the same way that
1137 \fB\-\-full\-history\fR
1138 with parent rewriting does (see above)\&.
1140 Then simplify each commit
1141 \fBC\fR
1142 to its replacement
1143 \fBC\*(Aq\fR
1144 in the final history according to the following rules:
1146 .RS 4
1147 .ie n \{\
1148 \h'-04'\(bu\h'+03'\c
1150 .el \{\
1151 .sp -1
1152 .IP \(bu 2.3
1155 \fBC\*(Aq\fR
1157 \fBC\fR\&.
1160 .RS 4
1161 .ie n \{\
1162 \h'-04'\(bu\h'+03'\c
1164 .el \{\
1165 .sp -1
1166 .IP \(bu 2.3
1168 Replace each parent
1169 \fBP\fR
1171 \fBC\*(Aq\fR
1172 with its simplification
1173 \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\&.
1176 .RS 4
1177 .ie n \{\
1178 \h'-04'\(bu\h'+03'\c
1180 .el \{\
1181 .sp -1
1182 .IP \(bu 2.3
1184 If after this parent rewriting,
1185 \fBC\*(Aq\fR
1186 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\&.
1189 The effect of this is best shown by way of comparing to
1190 \fB\-\-full\-history\fR
1191 with parent rewriting\&. The example turns into:
1193 .if n \{\
1194 .RS 4
1197           \&.\-A\-\-\-M\-\-\-N\-\-\-O
1198          /     /       /
1199         I     B       D
1200          \e   /       /
1201           `\-\-\-\-\-\-\-\-\-\*(Aq
1203 .if n \{\
1207 Note the major differences in
1208 \fBN\fR,
1209 \fBP\fR, and
1210 \fBQ\fR
1211 over
1212 \fB\-\-full\-history\fR:
1214 .RS 4
1215 .ie n \{\
1216 \h'-04'\(bu\h'+03'\c
1218 .el \{\
1219 .sp -1
1220 .IP \(bu 2.3
1222 \fBN\fR\*(Aqs parent list had
1223 \fBI\fR
1224 removed, because it is an ancestor of the other parent
1225 \fBM\fR\&. Still,
1226 \fBN\fR
1227 remained because it 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 \fBP\fR\*(Aqs parent list similarly had
1239 \fBI\fR
1240 removed\&.
1241 \fBP\fR
1242 was then removed completely, because it had one parent and is TREESAME\&.
1245 .RS 4
1246 .ie n \{\
1247 \h'-04'\(bu\h'+03'\c
1249 .el \{\
1250 .sp -1
1251 .IP \(bu 2.3
1253 \fBQ\fR\*(Aqs parent list had
1254 \fBY\fR
1255 simplified to
1256 \fBX\fR\&.
1257 \fBX\fR
1258 was then removed, because it was a TREESAME root\&.
1259 \fBQ\fR
1260 was then removed completely, because it had one parent and is TREESAME\&.
1264 There is another simplification mode available:
1266 \-\-ancestry\-path[=<commit>]
1267 .RS 4
1268 Limit the displayed commits to those which are an ancestor of <commit>, or which are a descendant of <commit>, or are <commit> itself\&.
1270 As an example use case, consider the following commit history:
1272 .if n \{\
1273 .RS 4
1276             D\-\-\-E\-\-\-\-\-\-\-F
1277            /     \e       \e
1278           B\-\-\-C\-\-\-G\-\-\-H\-\-\-I\-\-\-J
1279          /                     \e
1280         A\-\-\-\-\-\-\-K\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-L\-\-M
1282 .if n \{\
1286 A regular
1287 \fID\&.\&.M\fR
1288 computes the set of commits that are ancestors of
1289 \fBM\fR, but excludes the ones that are ancestors of
1290 \fBD\fR\&. This is useful to see what happened to the history leading to
1291 \fBM\fR
1292 since
1293 \fBD\fR, in the sense that \(lqwhat does
1294 \fBM\fR
1295 have that did not exist in
1296 \fBD\fR\(rq\&. The result in this example would be all the commits, except
1297 \fBA\fR
1299 \fBB\fR
1300 (and
1301 \fBD\fR
1302 itself, of course)\&.
1304 When we want to find out what commits in
1305 \fBM\fR
1306 are contaminated with the bug introduced by
1307 \fBD\fR
1308 and need fixing, however, we might want to view only the subset of
1309 \fID\&.\&.M\fR
1310 that are actually descendants of
1311 \fBD\fR, i\&.e\&. excluding
1312 \fBC\fR
1314 \fBK\fR\&. This is exactly what the
1315 \fB\-\-ancestry\-path\fR
1316 option does\&. Applied to the
1317 \fID\&.\&.M\fR
1318 range, it results in:
1320 .if n \{\
1321 .RS 4
1324                 E\-\-\-\-\-\-\-F
1325                  \e       \e
1326                   G\-\-\-H\-\-\-I\-\-\-J
1327                                \e
1328                                 L\-\-M
1330 .if n \{\
1334 We can also use
1335 \fB\-\-ancestry\-path=D\fR
1336 instead of
1337 \fB\-\-ancestry\-path\fR
1338 which means the same thing when applied to the
1339 \fID\&.\&.M\fR
1340 range but is just more explicit\&.
1342 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
1343 \fBD\&.\&.M\fR
1344 which contain that topic in their ancestry path\&. So, using
1345 \fB\-\-ancestry\-path=H D\&.\&.M\fR
1346 for example would result in:
1348 .if n \{\
1349 .RS 4
1352                 E
1353                  \e
1354                   G\-\-\-H\-\-\-I\-\-\-J
1355                                \e
1356                                 L\-\-M
1358 .if n \{\
1362 Whereas
1363 \fB\-\-ancestry\-path=K D\&.\&.M\fR
1364 would result in
1366 .if n \{\
1367 .RS 4
1370                 K\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-L\-\-M
1372 .if n \{\
1378 Before discussing another option, \fB\-\-show\-pulls\fR, we need to create a new example history\&.
1380 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:
1382 .if n \{\
1383 .RS 4
1386           \&.\-A\-\-\-M\-\-\-\-\-C\-\-N\-\-\-O\-\-\-P
1387          /     / \e  \e  \e/   /   /
1388         I     B   \e  R\-\*(Aq`\-Z\*(Aq   /
1389          \e   /     \e/         /
1390           \e /      /\e        /
1391            `\-\-\-X\-\-\*(Aq  `\-\-\-Y\-\-\*(Aq
1393 .if n \{\
1398 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\&.
1400 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:
1402 .if n \{\
1403 .RS 4
1406         I\-\-\-X
1408 .if n \{\
1413 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:
1415 .if n \{\
1416 .RS 4
1419           \&.\-A\-\-\-M\-\-\-\-\-\-\-\-N\-\-\-O\-\-\-P
1420          /     / \e  \e  \e/   /   /
1421         I     B   \e  R\-\*(Aq`\-\-\*(Aq   /
1422          \e   /     \e/         /
1423           \e /      /\e        /
1424            `\-\-\-X\-\-\*(Aq  `\-\-\-\-\-\-\*(Aq
1426 .if n \{\
1431 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\&.
1433 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:
1435 .if n \{\
1436 .RS 4
1439           \&.\-A\-\-\-M\-\-\&.
1440          /     /    \e
1441         I     B      R
1442          \e   /      /
1443           \e /      /
1444            `\-\-\-X\-\-\*(Aq
1446 .if n \{\
1451 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\&.
1453 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\&.
1455 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\&.
1457 \-\-show\-pulls
1458 .RS 4
1459 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\&.
1461 When a merge commit is included by
1462 \fB\-\-show\-pulls\fR, the merge is treated as if it "pulled" the change from another branch\&. When using
1463 \fB\-\-show\-pulls\fR
1464 on this example (and no other options) the resulting graph is:
1466 .if n \{\
1467 .RS 4
1470         I\-\-\-X\-\-\-R\-\-\-N
1472 .if n \{\
1476 Here, the merge commits
1477 \fBR\fR
1479 \fBN\fR
1480 are included because they pulled the commits
1481 \fBX\fR
1483 \fBR\fR
1484 into the base branch, respectively\&. These merges are the reason the commits
1485 \fBA\fR
1487 \fBB\fR
1488 do not appear in the default history\&.
1490 When
1491 \fB\-\-show\-pulls\fR
1492 is paired with
1493 \fB\-\-simplify\-merges\fR, the graph includes all of the necessary information:
1495 .if n \{\
1496 .RS 4
1499           \&.\-A\-\-\-M\-\-\&.   N
1500          /     /    \e /
1501         I     B      R
1502          \e   /      /
1503           \e /      /
1504            `\-\-\-X\-\-\*(Aq
1506 .if n \{\
1510 Notice that since
1511 \fBM\fR
1512 is reachable from
1513 \fBR\fR, the edge from
1514 \fBN\fR
1516 \fBM\fR
1517 was simplified away\&. However,
1518 \fBN\fR
1519 still appears in the history as an important commit because it "pulled" the change
1520 \fBR\fR
1521 into the main branch\&.
1524 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)\&.
1525 .SS "Commit Ordering"
1527 By default, the commits are shown in reverse chronological order\&.
1529 \-\-date\-order
1530 .RS 4
1531 Show no parents before all of its children are shown, but otherwise show commits in the commit timestamp order\&.
1534 \-\-author\-date\-order
1535 .RS 4
1536 Show no parents before all of its children are shown, but otherwise show commits in the author timestamp order\&.
1539 \-\-topo\-order
1540 .RS 4
1541 Show no parents before all of its children are shown, and avoid showing commits on multiple lines of history intermixed\&.
1543 For example, in a commit history like this:
1545 .if n \{\
1546 .RS 4
1549     \-\-\-1\-\-\-\-2\-\-\-\-4\-\-\-\-7
1550         \e              \e
1551          3\-\-\-\-5\-\-\-\-6\-\-\-\-8\-\-\-
1553 .if n \{\
1557 where the numbers denote the order of commit timestamps,
1558 \fBgit rev\-list\fR
1559 and friends with
1560 \fB\-\-date\-order\fR
1561 show the commits in the timestamp order: 8 7 6 5 4 3 2 1\&.
1563 With
1564 \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\&.
1567 \-\-reverse
1568 .RS 4
1569 Output the commits chosen to be shown (see Commit Limiting section above) in reverse order\&. Cannot be combined with
1570 \fB\-\-walk\-reflogs\fR\&.
1572 .SS "Object Traversal"
1574 These options are mostly targeted for packing of Git repositories\&.
1576 \-\-no\-walk[=(sorted|unsorted)]
1577 .RS 4
1578 Only show the given commits, but do not traverse their ancestors\&. This has no effect if a range is specified\&. If the argument
1579 \fBunsorted\fR
1580 is given, the commits are shown in the order they were given on the command line\&. Otherwise (if
1581 \fBsorted\fR
1582 or no argument was given), the commits are shown in reverse chronological order by commit time\&. Cannot be combined with
1583 \fB\-\-graph\fR\&.
1586 \-\-do\-walk
1587 .RS 4
1588 Overrides a previous
1589 \fB\-\-no\-walk\fR\&.
1591 .SS "Commit Formatting"
1593 \-\-pretty[=<format>], \-\-format=<format>
1594 .RS 4
1595 Pretty\-print the contents of the commit logs in a given format, where
1596 \fI<format>\fR
1597 can be one of
1598 \fIoneline\fR,
1599 \fIshort\fR,
1600 \fImedium\fR,
1601 \fIfull\fR,
1602 \fIfuller\fR,
1603 \fIreference\fR,
1604 \fIemail\fR,
1605 \fIraw\fR,
1606 \fIformat:<string>\fR
1608 \fItformat:<string>\fR\&. When
1609 \fI<format>\fR
1610 is none of the above, and has
1611 \fI%placeholder\fR
1612 in it, it acts as if
1613 \fI\-\-pretty=tformat:<format>\fR
1614 were given\&.
1616 See the "PRETTY FORMATS" section for some additional details for each format\&. When
1617 \fI=<format>\fR
1618 part is omitted, it defaults to
1619 \fImedium\fR\&.
1621 Note: you can specify the default pretty format in the repository configuration (see
1622 \fBgit-config\fR(1))\&.
1625 \-\-abbrev\-commit
1626 .RS 4
1627 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\&.
1629 This should make "\-\-pretty=oneline" a whole lot more readable for people using 80\-column terminals\&.
1632 \-\-no\-abbrev\-commit
1633 .RS 4
1634 Show the full 40\-byte hexadecimal commit object name\&. This negates
1635 \fB\-\-abbrev\-commit\fR, either explicit or implied by other options such as "\-\-oneline"\&. It also overrides the
1636 \fBlog\&.abbrevCommit\fR
1637 variable\&.
1640 \-\-oneline
1641 .RS 4
1642 This is a shorthand for "\-\-pretty=oneline \-\-abbrev\-commit" used together\&.
1645 \-\-encoding=<encoding>
1646 .RS 4
1647 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
1648 \fBX\fR
1649 and we are outputting in
1650 \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\&.
1653 \-\-expand\-tabs=<n>, \-\-expand\-tabs, \-\-no\-expand\-tabs
1654 .RS 4
1655 Perform a tab expansion (replace each tab with enough spaces to fill to the next display column that is a multiple of
1656 \fI<n>\fR) in the log message before showing it in the output\&.
1657 \fB\-\-expand\-tabs\fR
1658 is a short\-hand for
1659 \fB\-\-expand\-tabs=8\fR, and
1660 \fB\-\-no\-expand\-tabs\fR
1661 is a short\-hand for
1662 \fB\-\-expand\-tabs=0\fR, which disables tab expansion\&.
1664 By default, tabs are expanded in pretty formats that indent the log message by 4 spaces (i\&.e\&.
1665 \fImedium\fR, which is the default,
1666 \fIfull\fR, and
1667 \fIfuller\fR)\&.
1670 \-\-notes[=<ref>]
1671 .RS 4
1672 Show the notes (see
1673 \fBgit-notes\fR(1)) that annotate the commit, when showing the commit log message\&. This is the default for
1674 \fBgit log\fR,
1675 \fBgit show\fR
1677 \fBgit whatchanged\fR
1678 commands when there is no
1679 \fB\-\-pretty\fR,
1680 \fB\-\-format\fR, or
1681 \fB\-\-oneline\fR
1682 option given on the command line\&.
1684 By default, the notes shown are from the notes refs listed in the
1685 \fBcore\&.notesRef\fR
1687 \fBnotes\&.displayRef\fR
1688 variables (or corresponding environment overrides)\&. See
1689 \fBgit-config\fR(1)
1690 for more details\&.
1692 With an optional
1693 \fI<ref>\fR
1694 argument, use the ref to find the notes to display\&. The ref can specify the full refname when it begins with
1695 \fBrefs/notes/\fR; when it begins with
1696 \fBnotes/\fR,
1697 \fBrefs/\fR
1698 and otherwise
1699 \fBrefs/notes/\fR
1700 is prefixed to form the full name of the ref\&.
1702 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)\&.
1705 \-\-no\-notes
1706 .RS 4
1707 Do not show notes\&. This negates the above
1708 \fB\-\-notes\fR
1709 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"\&.
1712 \-\-show\-notes\-by\-default
1713 .RS 4
1714 Show the default notes unless options for displaying specific notes are given\&.
1717 \-\-show\-notes[=<ref>], \-\-[no\-]standard\-notes
1718 .RS 4
1719 These options are deprecated\&. Use the above \-\-notes/\-\-no\-notes options instead\&.
1722 \-\-show\-signature
1723 .RS 4
1724 Check the validity of a signed commit object by passing the signature to
1725 \fBgpg \-\-verify\fR
1726 and show the output\&.
1729 \-\-relative\-date
1730 .RS 4
1731 Synonym for
1732 \fB\-\-date=relative\fR\&.
1735 \-\-date=<format>
1736 .RS 4
1737 Only takes effect for dates shown in human\-readable format, such as when using
1738 \fB\-\-pretty\fR\&.
1739 \fBlog\&.date\fR
1740 config variable sets a default value for the log command\(cqs
1741 \fB\-\-date\fR
1742 option\&. By default, dates are shown in the original time zone (either committer\(cqs or author\(cqs)\&. If
1743 \fB\-local\fR
1744 is appended to the format (e\&.g\&.,
1745 \fBiso\-local\fR), the user\(cqs local time zone is used instead\&.
1747 \fB\-\-date=relative\fR
1748 shows dates relative to the current time, e\&.g\&. \(lq2 hours ago\(rq\&. The
1749 \fB\-local\fR
1750 option has no effect for
1751 \fB\-\-date=relative\fR\&.
1753 \fB\-\-date=local\fR
1754 is an alias for
1755 \fB\-\-date=default\-local\fR\&.
1757 \fB\-\-date=iso\fR
1759 \fB\-\-date=iso8601\fR) shows timestamps in a ISO 8601\-like format\&. The differences to the strict ISO 8601 format are:
1761 .RS 4
1762 .ie n \{\
1763 \h'-04'\(bu\h'+03'\c
1765 .el \{\
1766 .sp -1
1767 .IP \(bu 2.3
1769 a space instead of the
1770 \fBT\fR
1771 date/time delimiter
1774 .RS 4
1775 .ie n \{\
1776 \h'-04'\(bu\h'+03'\c
1778 .el \{\
1779 .sp -1
1780 .IP \(bu 2.3
1782 a space between time and time zone
1785 .RS 4
1786 .ie n \{\
1787 \h'-04'\(bu\h'+03'\c
1789 .el \{\
1790 .sp -1
1791 .IP \(bu 2.3
1793 no colon between hours and minutes of the time zone
1796 \fB\-\-date=iso\-strict\fR
1798 \fB\-\-date=iso8601\-strict\fR) shows timestamps in strict ISO 8601 format\&.
1800 \fB\-\-date=rfc\fR
1802 \fB\-\-date=rfc2822\fR) shows timestamps in RFC 2822 format, often found in email messages\&.
1804 \fB\-\-date=short\fR
1805 shows only the date, but not the time, in
1806 \fBYYYY\-MM\-DD\fR
1807 format\&.
1809 \fB\-\-date=raw\fR
1810 shows the date as seconds since the epoch (1970\-01\-01 00:00:00 UTC), followed by a space, and then the timezone as an offset from UTC (a
1811 \fB+\fR
1813 \fB\-\fR
1814 with four digits; the first two are hours, and the second two are minutes)\&. I\&.e\&., as if the timestamp were formatted with
1815 \fBstrftime("%s %z")\fR)\&. Note that the
1816 \fB\-local\fR
1817 option does not affect the seconds\-since\-epoch value (which is always measured in UTC), but does switch the accompanying timezone value\&.
1819 \fB\-\-date=human\fR
1820 shows the timezone if the timezone does not match the current time\-zone, and doesn\(cqt print the whole date if that matches (ie skip printing year for dates that are "this year", but also skip the whole date itself if it\(cqs in the last few days and we can just say what weekday it was)\&. For older dates the hour and minute is also omitted\&.
1822 \fB\-\-date=unix\fR
1823 shows the date as a Unix epoch timestamp (seconds since 1970)\&. As with
1824 \fB\-\-raw\fR, this is always in UTC and therefore
1825 \fB\-local\fR
1826 has no effect\&.
1828 \fB\-\-date=format:\&.\&.\&.\fR
1829 feeds the format
1830 \fB\&.\&.\&.\fR
1831 to your system
1832 \fBstrftime\fR, except for %s, %z, and %Z, which are handled internally\&. Use
1833 \fB\-\-date=format:%c\fR
1834 to show the date in your system locale\(cqs preferred format\&. See the
1835 \fBstrftime\fR
1836 manual for a complete list of format placeholders\&. When using
1837 \fB\-local\fR, the correct syntax is
1838 \fB\-\-date=format\-local:\&.\&.\&.\fR\&.
1840 \fB\-\-date=default\fR
1841 is the default format, and is based on ctime(3) output\&. It shows a single line with three\-letter day of the week, three\-letter month, day\-of\-month, hour\-minute\-seconds in "HH:MM:SS" format, followed by 4\-digit year, plus timezone information, unless the local time zone is used, e\&.g\&.
1842 \fBThu Jan 1 00:00:00 1970 +0000\fR\&.
1845 \-\-parents
1846 .RS 4
1847 Print also the parents of the commit (in the form "commit parent\&...")\&. Also enables parent rewriting, see
1848 \fIHistory Simplification\fR
1849 above\&.
1852 \-\-children
1853 .RS 4
1854 Print also the children of the commit (in the form "commit child\&...")\&. Also enables parent rewriting, see
1855 \fIHistory Simplification\fR
1856 above\&.
1859 \-\-left\-right
1860 .RS 4
1861 Mark which side of a symmetric difference a commit is reachable from\&. Commits from the left side are prefixed with
1862 \fB<\fR
1863 and those from the right with
1864 \fB>\fR\&. If combined with
1865 \fB\-\-boundary\fR, those commits are prefixed with
1866 \fB\-\fR\&.
1868 For example, if you have this topology:
1870 .if n \{\
1871 .RS 4
1874              y\-\-\-b\-\-\-b  branch B
1875             / \e /
1876            /   \&.
1877           /   / \e
1878          o\-\-\-x\-\-\-a\-\-\-a  branch A
1880 .if n \{\
1884 you would get an output like this:
1886 .if n \{\
1887 .RS 4
1890         $ git rev\-list \-\-left\-right \-\-boundary \-\-pretty=oneline A\&.\&.\&.B
1892         >bbbbbbb\&.\&.\&. 3rd on b
1893         >bbbbbbb\&.\&.\&. 2nd on b
1894         <aaaaaaa\&.\&.\&. 3rd on a
1895         <aaaaaaa\&.\&.\&. 2nd on a
1896         \-yyyyyyy\&.\&.\&. 1st on b
1897         \-xxxxxxx\&.\&.\&. 1st on a
1899 .if n \{\
1905 \-\-graph
1906 .RS 4
1907 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
1908 \fB\-\-no\-walk\fR\&.
1910 This enables parent rewriting, see
1911 \fIHistory Simplification\fR
1912 above\&.
1914 This implies the
1915 \fB\-\-topo\-order\fR
1916 option by default, but the
1917 \fB\-\-date\-order\fR
1918 option may also be specified\&.
1921 \-\-show\-linear\-break[=<barrier>]
1922 .RS 4
1923 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
1924 \fB<barrier>\fR
1925 is specified, it is the string that will be shown instead of the default one\&.
1927 .SH "PRETTY FORMATS"
1929 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\&.
1931 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:
1933 .RS 4
1934 .ie n \{\
1935 \h'-04'\(bu\h'+03'\c
1937 .el \{\
1938 .sp -1
1939 .IP \(bu 2.3
1941 \fIoneline\fR
1943 .if n \{\
1944 .RS 4
1947 <hash> <title\-line>
1949 .if n \{\
1953 This is designed to be as compact as possible\&.
1956 .RS 4
1957 .ie n \{\
1958 \h'-04'\(bu\h'+03'\c
1960 .el \{\
1961 .sp -1
1962 .IP \(bu 2.3
1964 \fIshort\fR
1966 .if n \{\
1967 .RS 4
1970 commit <hash>
1971 Author: <author>
1973 .if n \{\
1977 .if n \{\
1978 .RS 4
1981 <title\-line>
1983 .if n \{\
1988 .RS 4
1989 .ie n \{\
1990 \h'-04'\(bu\h'+03'\c
1992 .el \{\
1993 .sp -1
1994 .IP \(bu 2.3
1996 \fImedium\fR
1998 .if n \{\
1999 .RS 4
2002 commit <hash>
2003 Author: <author>
2004 Date:   <author\-date>
2006 .if n \{\
2010 .if n \{\
2011 .RS 4
2014 <title\-line>
2016 .if n \{\
2020 .if n \{\
2021 .RS 4
2024 <full\-commit\-message>
2026 .if n \{\
2031 .RS 4
2032 .ie n \{\
2033 \h'-04'\(bu\h'+03'\c
2035 .el \{\
2036 .sp -1
2037 .IP \(bu 2.3
2039 \fIfull\fR
2041 .if n \{\
2042 .RS 4
2045 commit <hash>
2046 Author: <author>
2047 Commit: <committer>
2049 .if n \{\
2053 .if n \{\
2054 .RS 4
2057 <title\-line>
2059 .if n \{\
2063 .if n \{\
2064 .RS 4
2067 <full\-commit\-message>
2069 .if n \{\
2074 .RS 4
2075 .ie n \{\
2076 \h'-04'\(bu\h'+03'\c
2078 .el \{\
2079 .sp -1
2080 .IP \(bu 2.3
2082 \fIfuller\fR
2084 .if n \{\
2085 .RS 4
2088 commit <hash>
2089 Author:     <author>
2090 AuthorDate: <author\-date>
2091 Commit:     <committer>
2092 CommitDate: <committer\-date>
2094 .if n \{\
2098 .if n \{\
2099 .RS 4
2102 <title\-line>
2104 .if n \{\
2108 .if n \{\
2109 .RS 4
2112 <full\-commit\-message>
2114 .if n \{\
2119 .RS 4
2120 .ie n \{\
2121 \h'-04'\(bu\h'+03'\c
2123 .el \{\
2124 .sp -1
2125 .IP \(bu 2.3
2127 \fIreference\fR
2129 .if n \{\
2130 .RS 4
2133 <abbrev\-hash> (<title\-line>, <short\-author\-date>)
2135 .if n \{\
2139 This format is used to refer to another commit in a commit message and is the same as
2140 \fB\-\-pretty=\*(Aqformat:%C(auto)%h (%s, %ad)\*(Aq\fR\&. By default, the date is formatted with
2141 \fB\-\-date=short\fR
2142 unless another
2143 \fB\-\-date\fR
2144 option is explicitly specified\&. As with any
2145 \fBformat:\fR
2146 with format placeholders, its output is not affected by other options like
2147 \fB\-\-decorate\fR
2149 \fB\-\-walk\-reflogs\fR\&.
2152 .RS 4
2153 .ie n \{\
2154 \h'-04'\(bu\h'+03'\c
2156 .el \{\
2157 .sp -1
2158 .IP \(bu 2.3
2160 \fIemail\fR
2162 .if n \{\
2163 .RS 4
2166 From <hash> <date>
2167 From: <author>
2168 Date: <author\-date>
2169 Subject: [PATCH] <title\-line>
2171 .if n \{\
2175 .if n \{\
2176 .RS 4
2179 <full\-commit\-message>
2181 .if n \{\
2186 .RS 4
2187 .ie n \{\
2188 \h'-04'\(bu\h'+03'\c
2190 .el \{\
2191 .sp -1
2192 .IP \(bu 2.3
2194 \fImboxrd\fR
2196 Like
2197 \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\&.
2200 .RS 4
2201 .ie n \{\
2202 \h'-04'\(bu\h'+03'\c
2204 .el \{\
2205 .sp -1
2206 .IP \(bu 2.3
2208 \fIraw\fR
2211 \fIraw\fR
2212 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
2213 \fIparents\fR
2214 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
2215 \fBgit log \-\-raw\fR\&. To get full object names in a raw diff format, use
2216 \fB\-\-no\-abbrev\fR\&.
2219 .RS 4
2220 .ie n \{\
2221 \h'-04'\(bu\h'+03'\c
2223 .el \{\
2224 .sp -1
2225 .IP \(bu 2.3
2227 \fIformat:<format\-string>\fR
2230 \fIformat:<format\-string>\fR
2231 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
2232 \fI%n\fR
2233 instead of
2234 \fI\en\fR\&.
2236 E\&.g,
2237 \fIformat:"The author of %h was %an, %ar%nThe title was >>%s<<%n"\fR
2238 would show something like this:
2240 .if n \{\
2241 .RS 4
2244 The author of fe6e0ee was Junio C Hamano, 23 hours ago
2245 The title was >>t4119: test autocomputing \-p<n> for traditional diff input\&.<<
2247 .if n \{\
2251 The placeholders are:
2253 .RS 4
2254 .ie n \{\
2255 \h'-04'\(bu\h'+03'\c
2257 .el \{\
2258 .sp -1
2259 .IP \(bu 2.3
2261 Placeholders that expand to a single literal character:
2263 \fI%n\fR
2264 .RS 4
2265 newline
2268 \fI%%\fR
2269 .RS 4
2270 a raw
2271 \fI%\fR
2274 \fI%x00\fR
2275 .RS 4
2276 \fI%x\fR
2277 followed by two hexadecimal digits is replaced with a byte with the hexadecimal digits\*(Aq value (we will call this "literal formatting code" in the rest of this document)\&.
2281 .RS 4
2282 .ie n \{\
2283 \h'-04'\(bu\h'+03'\c
2285 .el \{\
2286 .sp -1
2287 .IP \(bu 2.3
2289 Placeholders that affect formatting of later placeholders:
2291 \fI%Cred\fR
2292 .RS 4
2293 switch color to red
2296 \fI%Cgreen\fR
2297 .RS 4
2298 switch color to green
2301 \fI%Cblue\fR
2302 .RS 4
2303 switch color to blue
2306 \fI%Creset\fR
2307 .RS 4
2308 reset color
2311 \fI%C(\&...)\fR
2312 .RS 4
2313 color specification, as described under Values in the "CONFIGURATION FILE" section of
2314 \fBgit-config\fR(1)\&. By default, colors are shown only when enabled for log output (by
2315 \fBcolor\&.diff\fR,
2316 \fBcolor\&.ui\fR, or
2317 \fB\-\-color\fR, and respecting the
2318 \fBauto\fR
2319 settings of the former if we are going to a terminal)\&.
2320 \fB%C(auto,\&.\&.\&.)\fR
2321 is accepted as a historical synonym for the default (e\&.g\&.,
2322 \fB%C(auto,red)\fR)\&. Specifying
2323 \fB%C(always,\&.\&.\&.)\fR
2324 will show the colors even when color is not otherwise enabled (though consider just using
2325 \fB\-\-color=always\fR
2326 to enable color for the whole output, including this format and anything else git might color)\&.
2327 \fBauto\fR
2328 alone (i\&.e\&.
2329 \fB%C(auto)\fR) will turn on auto coloring on the next placeholders until the color is switched again\&.
2332 \fI%m\fR
2333 .RS 4
2334 left (\fB<\fR), right (\fB>\fR) or boundary (\fB\-\fR) mark
2337 \fI%w([<w>[,<i1>[,<i2>]]])\fR
2338 .RS 4
2339 switch line wrapping, like the \-w option of
2340 \fBgit-shortlog\fR(1)\&.
2343 \fI%<( <N> [,trunc|ltrunc|mtrunc])\fR
2344 .RS 4
2345 make the next placeholder take at least N column widths, padding spaces on the right if necessary\&. Optionally truncate (with ellipsis
2346 \fI\&.\&.\fR) at the left (ltrunc)
2347 \fB\&.\&.ft\fR, the middle (mtrunc)
2348 \fBmi\&.\&.le\fR, or the end (trunc)
2349 \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\&.
2352 \fI%<|( <M> )\fR
2353 .RS 4
2354 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\&.
2357 \fI%>( <N> )\fR, \fI%>|( <M> )\fR
2358 .RS 4
2359 similar to
2360 \fI%<( <N> )\fR,
2361 \fI%<|( <M> )\fR
2362 respectively, but padding spaces on the left
2365 \fI%>>( <N> )\fR, \fI%>>|( <M> )\fR
2366 .RS 4
2367 similar to
2368 \fI%>( <N> )\fR,
2369 \fI%>|( <M> )\fR
2370 respectively, except that if the next placeholder takes more spaces than given and there are spaces on its left, use those spaces
2373 \fI%><( <N> )\fR, \fI%><|( <M> )\fR
2374 .RS 4
2375 similar to
2376 \fI%<( <N> )\fR,
2377 \fI%<|( <M> )\fR
2378 respectively, but padding both sides (i\&.e\&. the text is centered)
2382 .RS 4
2383 .ie n \{\
2384 \h'-04'\(bu\h'+03'\c
2386 .el \{\
2387 .sp -1
2388 .IP \(bu 2.3
2390 Placeholders that expand to information extracted from the commit:
2392 \fI%H\fR
2393 .RS 4
2394 commit hash
2397 \fI%h\fR
2398 .RS 4
2399 abbreviated commit hash
2402 \fI%T\fR
2403 .RS 4
2404 tree hash
2407 \fI%t\fR
2408 .RS 4
2409 abbreviated tree hash
2412 \fI%P\fR
2413 .RS 4
2414 parent hashes
2417 \fI%p\fR
2418 .RS 4
2419 abbreviated parent hashes
2422 \fI%an\fR
2423 .RS 4
2424 author name
2427 \fI%aN\fR
2428 .RS 4
2429 author name (respecting \&.mailmap, see
2430 \fBgit-shortlog\fR(1)
2432 \fBgit-blame\fR(1))
2435 \fI%ae\fR
2436 .RS 4
2437 author email
2440 \fI%aE\fR
2441 .RS 4
2442 author email (respecting \&.mailmap, see
2443 \fBgit-shortlog\fR(1)
2445 \fBgit-blame\fR(1))
2448 \fI%al\fR
2449 .RS 4
2450 author email local\-part (the part before the
2451 \fI@\fR
2452 sign)
2455 \fI%aL\fR
2456 .RS 4
2457 author local\-part (see
2458 \fI%al\fR) respecting \&.mailmap, see
2459 \fBgit-shortlog\fR(1)
2461 \fBgit-blame\fR(1))
2464 \fI%ad\fR
2465 .RS 4
2466 author date (format respects \-\-date= option)
2469 \fI%aD\fR
2470 .RS 4
2471 author date, RFC2822 style
2474 \fI%ar\fR
2475 .RS 4
2476 author date, relative
2479 \fI%at\fR
2480 .RS 4
2481 author date, UNIX timestamp
2484 \fI%ai\fR
2485 .RS 4
2486 author date, ISO 8601\-like format
2489 \fI%aI\fR
2490 .RS 4
2491 author date, strict ISO 8601 format
2494 \fI%as\fR
2495 .RS 4
2496 author date, short format (\fBYYYY\-MM\-DD\fR)
2499 \fI%ah\fR
2500 .RS 4
2501 author date, human style (like the
2502 \fB\-\-date=human\fR
2503 option of
2504 \fBgit-rev-list\fR(1))
2507 \fI%cn\fR
2508 .RS 4
2509 committer name
2512 \fI%cN\fR
2513 .RS 4
2514 committer name (respecting \&.mailmap, see
2515 \fBgit-shortlog\fR(1)
2517 \fBgit-blame\fR(1))
2520 \fI%ce\fR
2521 .RS 4
2522 committer email
2525 \fI%cE\fR
2526 .RS 4
2527 committer email (respecting \&.mailmap, see
2528 \fBgit-shortlog\fR(1)
2530 \fBgit-blame\fR(1))
2533 \fI%cl\fR
2534 .RS 4
2535 committer email local\-part (the part before the
2536 \fI@\fR
2537 sign)
2540 \fI%cL\fR
2541 .RS 4
2542 committer local\-part (see
2543 \fI%cl\fR) respecting \&.mailmap, see
2544 \fBgit-shortlog\fR(1)
2546 \fBgit-blame\fR(1))
2549 \fI%cd\fR
2550 .RS 4
2551 committer date (format respects \-\-date= option)
2554 \fI%cD\fR
2555 .RS 4
2556 committer date, RFC2822 style
2559 \fI%cr\fR
2560 .RS 4
2561 committer date, relative
2564 \fI%ct\fR
2565 .RS 4
2566 committer date, UNIX timestamp
2569 \fI%ci\fR
2570 .RS 4
2571 committer date, ISO 8601\-like format
2574 \fI%cI\fR
2575 .RS 4
2576 committer date, strict ISO 8601 format
2579 \fI%cs\fR
2580 .RS 4
2581 committer date, short format (\fBYYYY\-MM\-DD\fR)
2584 \fI%ch\fR
2585 .RS 4
2586 committer date, human style (like the
2587 \fB\-\-date=human\fR
2588 option of
2589 \fBgit-rev-list\fR(1))
2592 \fI%d\fR
2593 .RS 4
2594 ref names, like the \-\-decorate option of
2595 \fBgit-log\fR(1)
2598 \fI%D\fR
2599 .RS 4
2600 ref names without the " (", ")" wrapping\&.
2603 \fI%(decorate[:<options>])\fR
2604 .RS 4
2605 ref names with custom decorations\&. The
2606 \fBdecorate\fR
2607 string may be followed by a colon and zero or more comma\-separated options\&. Option values may contain literal formatting codes\&. These must be used for commas (\fB%x2C\fR) and closing parentheses (\fB%x29\fR), due to their role in the option syntax\&.
2609 .RS 4
2610 .ie n \{\
2611 \h'-04'\(bu\h'+03'\c
2613 .el \{\
2614 .sp -1
2615 .IP \(bu 2.3
2617 \fIprefix=<value>\fR: Shown before the list of ref names\&. Defaults to "\ \&\fB(\fR"\&.
2620 .RS 4
2621 .ie n \{\
2622 \h'-04'\(bu\h'+03'\c
2624 .el \{\
2625 .sp -1
2626 .IP \(bu 2.3
2628 \fIsuffix=<value>\fR: Shown after the list of ref names\&. Defaults to "\fB)\fR"\&.
2631 .RS 4
2632 .ie n \{\
2633 \h'-04'\(bu\h'+03'\c
2635 .el \{\
2636 .sp -1
2637 .IP \(bu 2.3
2639 \fIseparator=<value>\fR: Shown between ref names\&. Defaults to "\fB,\fR\ \&"\&.
2642 .RS 4
2643 .ie n \{\
2644 \h'-04'\(bu\h'+03'\c
2646 .el \{\
2647 .sp -1
2648 .IP \(bu 2.3
2650 \fIpointer=<value>\fR: Shown between HEAD and the branch it points to, if any\&. Defaults to "\ \&\fB\->\fR\ \&"\&.
2653 .RS 4
2654 .ie n \{\
2655 \h'-04'\(bu\h'+03'\c
2657 .el \{\
2658 .sp -1
2659 .IP \(bu 2.3
2661 \fItag=<value>\fR: Shown before tag names\&. Defaults to "\fBtag:\fR\ \&"\&.
2664 For example, to produce decorations with no wrapping or tag annotations, and spaces as separators:
2666 \fB%(decorate:prefix=,suffix=,tag=,separator= )\fR
2669 \fI%(describe[:<options>])\fR
2670 .RS 4
2671 human\-readable name, like
2672 \fBgit-describe\fR(1); empty string for undescribable commits\&. The
2673 \fBdescribe\fR
2674 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\&.
2676 .RS 4
2677 .ie n \{\
2678 \h'-04'\(bu\h'+03'\c
2680 .el \{\
2681 .sp -1
2682 .IP \(bu 2.3
2684 \fItags[=<bool\-value>]\fR: Instead of only considering annotated tags, consider lightweight tags as well\&.
2687 .RS 4
2688 .ie n \{\
2689 \h'-04'\(bu\h'+03'\c
2691 .el \{\
2692 .sp -1
2693 .IP \(bu 2.3
2695 \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\&.
2698 .RS 4
2699 .ie n \{\
2700 \h'-04'\(bu\h'+03'\c
2702 .el \{\
2703 .sp -1
2704 .IP \(bu 2.3
2706 \fImatch=<pattern>\fR: Only consider tags matching the given
2707 \fBglob(7)\fR
2708 pattern, excluding the "refs/tags/" prefix\&.
2711 .RS 4
2712 .ie n \{\
2713 \h'-04'\(bu\h'+03'\c
2715 .el \{\
2716 .sp -1
2717 .IP \(bu 2.3
2719 \fIexclude=<pattern>\fR: Do not consider tags matching the given
2720 \fBglob(7)\fR
2721 pattern, excluding the "refs/tags/" prefix\&.
2725 \fI%S\fR
2726 .RS 4
2727 ref name given on the command line by which the commit was reached (like
2728 \fBgit log \-\-source\fR), only works with
2729 \fBgit log\fR
2732 \fI%e\fR
2733 .RS 4
2734 encoding
2737 \fI%s\fR
2738 .RS 4
2739 subject
2742 \fI%f\fR
2743 .RS 4
2744 sanitized subject line, suitable for a filename
2747 \fI%b\fR
2748 .RS 4
2749 body
2752 \fI%B\fR
2753 .RS 4
2754 raw body (unwrapped subject and body)
2757 \fI%N\fR
2758 .RS 4
2759 commit notes
2762 \fI%GG\fR
2763 .RS 4
2764 raw verification message from GPG for a signed commit
2767 \fI%G?\fR
2768 .RS 4
2769 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
2772 \fI%GS\fR
2773 .RS 4
2774 show the name of the signer for a signed commit
2777 \fI%GK\fR
2778 .RS 4
2779 show the key used to sign a signed commit
2782 \fI%GF\fR
2783 .RS 4
2784 show the fingerprint of the key used to sign a signed commit
2787 \fI%GP\fR
2788 .RS 4
2789 show the fingerprint of the primary key whose subkey was used to sign a signed commit
2792 \fI%GT\fR
2793 .RS 4
2794 show the trust level for the key used to sign a signed commit
2797 \fI%gD\fR
2798 .RS 4
2799 reflog selector, e\&.g\&.,
2800 \fBrefs/stash@{1}\fR
2802 \fBrefs/stash@{2 minutes ago}\fR; the format follows the rules described for the
2803 \fB\-g\fR
2804 option\&. The portion before the
2805 \fB@\fR
2806 is the refname as given on the command line (so
2807 \fBgit log \-g refs/heads/master\fR
2808 would yield
2809 \fBrefs/heads/master@{0}\fR)\&.
2812 \fI%gd\fR
2813 .RS 4
2814 shortened reflog selector; same as
2815 \fB%gD\fR, but the refname portion is shortened for human readability (so
2816 \fBrefs/heads/master\fR
2817 becomes just
2818 \fBmaster\fR)\&.
2821 \fI%gn\fR
2822 .RS 4
2823 reflog identity name
2826 \fI%gN\fR
2827 .RS 4
2828 reflog identity name (respecting \&.mailmap, see
2829 \fBgit-shortlog\fR(1)
2831 \fBgit-blame\fR(1))
2834 \fI%ge\fR
2835 .RS 4
2836 reflog identity email
2839 \fI%gE\fR
2840 .RS 4
2841 reflog identity email (respecting \&.mailmap, see
2842 \fBgit-shortlog\fR(1)
2844 \fBgit-blame\fR(1))
2847 \fI%gs\fR
2848 .RS 4
2849 reflog subject
2852 \fI%(trailers[:<options>])\fR
2853 .RS 4
2854 display the trailers of the body as interpreted by
2855 \fBgit-interpret-trailers\fR(1)\&. The
2856 \fBtrailers\fR
2857 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\&.
2859 .RS 4
2860 .ie n \{\
2861 \h'-04'\(bu\h'+03'\c
2863 .el \{\
2864 .sp -1
2865 .IP \(bu 2.3
2867 \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
2868 \fBonly\fR
2869 option so that non\-trailer lines in the trailer block are hidden\&. If that is not desired it can be disabled with
2870 \fBonly=false\fR\&. E\&.g\&.,
2871 \fB%(trailers:key=Reviewed\-by)\fR
2872 shows trailer lines with key
2873 \fBReviewed\-by\fR\&.
2876 .RS 4
2877 .ie n \{\
2878 \h'-04'\(bu\h'+03'\c
2880 .el \{\
2881 .sp -1
2882 .IP \(bu 2.3
2884 \fIonly[=<bool>]\fR: select whether non\-trailer lines from the trailer block should be included\&.
2887 .RS 4
2888 .ie n \{\
2889 \h'-04'\(bu\h'+03'\c
2891 .el \{\
2892 .sp -1
2893 .IP \(bu 2.3
2895 \fIseparator=<sep>\fR: specify the separator inserted between trailer lines\&. Defaults to a line feed character\&. The string <sep> may contain the literal formatting codes described above\&. To use comma as separator one must use
2896 \fB%x2C\fR
2897 as it would otherwise be parsed as next option\&. E\&.g\&.,
2898 \fB%(trailers:key=Ticket,separator=%x2C )\fR
2899 shows all trailer lines whose key is "Ticket" separated by a comma and a space\&.
2902 .RS 4
2903 .ie n \{\
2904 \h'-04'\(bu\h'+03'\c
2906 .el \{\
2907 .sp -1
2908 .IP \(bu 2.3
2910 \fIunfold[=<bool>]\fR: make it behave as if interpret\-trailer\(cqs
2911 \fB\-\-unfold\fR
2912 option was given\&. E\&.g\&.,
2913 \fB%(trailers:only,unfold=true)\fR
2914 unfolds and shows all trailer lines\&.
2917 .RS 4
2918 .ie n \{\
2919 \h'-04'\(bu\h'+03'\c
2921 .el \{\
2922 .sp -1
2923 .IP \(bu 2.3
2925 \fIkeyonly[=<bool>]\fR: only show the key part of the trailer\&.
2928 .RS 4
2929 .ie n \{\
2930 \h'-04'\(bu\h'+03'\c
2932 .el \{\
2933 .sp -1
2934 .IP \(bu 2.3
2936 \fIvalueonly[=<bool>]\fR: only show the value part of the trailer\&.
2939 .RS 4
2940 .ie n \{\
2941 \h'-04'\(bu\h'+03'\c
2943 .el \{\
2944 .sp -1
2945 .IP \(bu 2.3
2947 \fIkey_value_separator=<sep>\fR: specify the separator inserted between the key and value of each trailer\&. Defaults to ": "\&. Otherwise it shares the same semantics as
2948 \fIseparator=<sep>\fR
2949 above\&.
2954 .if n \{\
2957 .RS 4
2958 .it 1 an-trap
2959 .nr an-no-space-flag 1
2960 .nr an-break-flag 1
2962 .ps +1
2963 \fBNote\fR
2964 .ps -1
2967 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\&.
2968 .sp .5v
2971 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\&.
2973 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\&.
2975 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\&.
2977 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\&.
2979 .RS 4
2980 .ie n \{\
2981 \h'-04'\(bu\h'+03'\c
2983 .el \{\
2984 .sp -1
2985 .IP \(bu 2.3
2987 \fItformat:\fR
2990 \fItformat:\fR
2991 format works exactly like
2992 \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:
2994 .if n \{\
2995 .RS 4
2998 $ git log \-2 \-\-pretty=format:%h 4da45bef \e
2999   | perl \-pe \*(Aq$_ \&.= " \-\- NO NEWLINE\en" unless /\en/\*(Aq
3000 4da45be
3001 7134973 \-\- NO NEWLINE
3003 $ git log \-2 \-\-pretty=tformat:%h 4da45bef \e
3004   | perl \-pe \*(Aq$_ \&.= " \-\- NO NEWLINE\en" unless /\en/\*(Aq
3005 4da45be
3006 7134973
3008 .if n \{\
3012 In addition, any unrecognized string that has a
3013 \fB%\fR
3014 in it is interpreted as if it has
3015 \fBtformat:\fR
3016 in front of it\&. For example, these two are equivalent:
3018 .if n \{\
3019 .RS 4
3022 $ git log \-2 \-\-pretty=tformat:%h 4da45bef
3023 $ git log \-2 \-\-pretty=%h 4da45bef
3025 .if n \{\
3030 .SH "DIFF FORMATTING"
3032 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\&.
3034 Note that unless one of \fB\-\-diff\-merges\fR variants (including short \fB\-m\fR, \fB\-c\fR, \fB\-\-cc\fR, and \fB\-\-dd\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 for merge commits\&.
3036 \-p, \-u, \-\-patch
3037 .RS 4
3038 Generate patch (see
3039 the section called \(lqGENERATING PATCH TEXT WITH \-P\(rq)\&.
3042 \-s, \-\-no\-patch
3043 .RS 4
3044 Suppress all output from the diff machinery\&. Useful for commands like
3045 \fBgit show\fR
3046 that show the patch by default to squelch their output, or to cancel the effect of options like
3047 \fB\-\-patch\fR,
3048 \fB\-\-stat\fR
3049 earlier on the command line in an alias\&.
3053 .RS 4
3054 Show diffs for merge commits in the default format\&. This is similar to
3055 \fI\-\-diff\-merges=on\fR, except
3056 \fB\-m\fR
3057 will produce no output unless
3058 \fB\-p\fR
3059 is given as well\&.
3063 .RS 4
3064 Produce combined diff output for merge commits\&. Shortcut for
3065 \fI\-\-diff\-merges=combined \-p\fR\&.
3068 \-\-cc
3069 .RS 4
3070 Produce dense combined diff output for merge commits\&. Shortcut for
3071 \fI\-\-diff\-merges=dense\-combined \-p\fR\&.
3074 \-\-dd
3075 .RS 4
3076 Produce diff with respect to first parent for both merge and regular commits\&. Shortcut for
3077 \fI\-\-diff\-merges=first\-parent \-p\fR\&.
3080 \-\-remerge\-diff
3081 .RS 4
3082 Produce remerge\-diff output for merge commits\&. Shortcut for
3083 \fI\-\-diff\-merges=remerge \-p\fR\&.
3086 \-\-no\-diff\-merges
3087 .RS 4
3088 Synonym for
3089 \fI\-\-diff\-merges=off\fR\&.
3092 \-\-diff\-merges=<format>
3093 .RS 4
3094 Specify diff format to be used for merge commits\&. Default is
3095 \fBoff\fR
3096 unless
3097 \fB\-\-first\-parent\fR
3098 is in use, in which case
3099 \fBfirst\-parent\fR
3100 is the default\&.
3102 The following formats are supported:
3104 off, none
3105 .RS 4
3106 Disable output of diffs for merge commits\&. Useful to override implied value\&.
3109 on, m
3110 .RS 4
3111 Make diff output for merge commits to be shown in the default format\&. The default format can be changed using
3112 \fBlog\&.diffMerges\fR
3113 configuration variable, whose default value is
3114 \fBseparate\fR\&.
3117 first\-parent, 1
3118 .RS 4
3119 Show full diff with respect to first parent\&. This is the same format as
3120 \fB\-\-patch\fR
3121 produces for non\-merge commits\&.
3124 separate
3125 .RS 4
3126 Show full diff with respect to each of parents\&. Separate log entry and diff is generated for each parent\&.
3129 combined, c
3130 .RS 4
3131 Show 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\&.
3134 dense\-combined, cc
3135 .RS 4
3136 Further compress output produced by
3137 \fB\-\-diff\-merges=combined\fR
3138 by omitting uninteresting hunks whose contents in the parents have only two variants and the merge result picks one of them without modification\&.
3141 remerge, r
3142 .RS 4
3143 Remerge two\-parent merge commits to create a temporary tree object\(empotentially containing files with conflict markers and such\&. A diff is then shown between that temporary tree and the actual merge commit\&.
3145 The output emitted when this option is used is subject to change, and so is its interaction with other options (unless explicitly documented)\&.
3149 \-\-combined\-all\-paths
3150 .RS 4
3151 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
3152 \fB\-\-diff\-merges=[dense\-]combined\fR
3153 is in use, and is likely only useful if filename changes are detected (i\&.e\&. when either rename or copy detection have been requested)\&.
3156 \-U<n>, \-\-unified=<n>
3157 .RS 4
3158 Generate diffs with <n> lines of context instead of the usual three\&. Implies
3159 \fB\-\-patch\fR\&.
3162 \-\-output=<file>
3163 .RS 4
3164 Output to a specific file instead of stdout\&.
3167 \-\-output\-indicator\-new=<char>, \-\-output\-indicator\-old=<char>, \-\-output\-indicator\-context=<char>
3168 .RS 4
3169 Specify the character used to indicate new, old or context lines in the generated patch\&. Normally they are
3170 \fI+\fR,
3171 \fI\-\fR
3172 and \*(Aq \*(Aq respectively\&.
3175 \-\-raw
3176 .RS 4
3177 For each commit, show a summary of changes using the raw diff format\&. See the "RAW OUTPUT FORMAT" section of
3178 \fBgit-diff\fR(1)\&. This is different from showing the log itself in raw format, which you can achieve with
3179 \fB\-\-format=raw\fR\&.
3182 \-\-patch\-with\-raw
3183 .RS 4
3184 Synonym for
3185 \fB\-p \-\-raw\fR\&.
3189 .RS 4
3190 Show the tree objects in the diff output\&.
3193 \-\-indent\-heuristic
3194 .RS 4
3195 Enable the heuristic that shifts diff hunk boundaries to make patches easier to read\&. This is the default\&.
3198 \-\-no\-indent\-heuristic
3199 .RS 4
3200 Disable the indent heuristic\&.
3203 \-\-minimal
3204 .RS 4
3205 Spend extra time to make sure the smallest possible diff is produced\&.
3208 \-\-patience
3209 .RS 4
3210 Generate a diff using the "patience diff" algorithm\&.
3213 \-\-histogram
3214 .RS 4
3215 Generate a diff using the "histogram diff" algorithm\&.
3218 \-\-anchored=<text>
3219 .RS 4
3220 Generate a diff using the "anchored diff" algorithm\&.
3222 This option may be specified more than once\&.
3224 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\&.
3227 \-\-diff\-algorithm={patience|minimal|histogram|myers}
3228 .RS 4
3229 Choose a diff algorithm\&. The variants are as follows:
3231 \fBdefault\fR, \fBmyers\fR
3232 .RS 4
3233 The basic greedy diff algorithm\&. Currently, this is the default\&.
3236 \fBminimal\fR
3237 .RS 4
3238 Spend extra time to make sure the smallest possible diff is produced\&.
3241 \fBpatience\fR
3242 .RS 4
3243 Use "patience diff" algorithm when generating patches\&.
3246 \fBhistogram\fR
3247 .RS 4
3248 This algorithm extends the patience algorithm to "support low\-occurrence common elements"\&.
3251 For instance, if you configured the
3252 \fBdiff\&.algorithm\fR
3253 variable to a non\-default value and want to use the default one, then you have to use
3254 \fB\-\-diff\-algorithm=default\fR
3255 option\&.
3258 \-\-stat[=<width>[,<name\-width>[,<count>]]]
3259 .RS 4
3260 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
3261 \fB<width>\fR\&. The width of the filename part can be limited by giving another width
3262 \fB<name\-width>\fR
3263 after a comma or by setting
3264 \fBdiff\&.statNameWidth=<width>\fR\&. The width of the graph part can be limited by using
3265 \fB\-\-stat\-graph\-width=<width>\fR
3266 or by setting
3267 \fBdiff\&.statGraphWidth=<width>\fR\&. Using
3268 \fB\-\-stat\fR
3270 \fB\-\-stat\-graph\-width\fR
3271 affects all commands generating a stat graph, while setting
3272 \fBdiff\&.statNameWidth\fR
3274 \fBdiff\&.statGraphWidth\fR
3275 does not affect
3276 \fBgit format\-patch\fR\&. By giving a third parameter
3277 \fB<count>\fR, you can limit the output to the first
3278 \fB<count>\fR
3279 lines, followed by
3280 \fB\&.\&.\&.\fR
3281 if there are more\&.
3283 These parameters can also be set individually with
3284 \fB\-\-stat\-width=<width>\fR,
3285 \fB\-\-stat\-name\-width=<name\-width>\fR
3287 \fB\-\-stat\-count=<count>\fR\&.
3290 \-\-compact\-summary
3291 .RS 4
3292 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
3293 \fB\-\-stat\fR\&.
3296 \-\-numstat
3297 .RS 4
3298 Similar to
3299 \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
3300 \fB\-\fR
3301 instead of saying
3302 \fB0 0\fR\&.
3305 \-\-shortstat
3306 .RS 4
3307 Output only the last line of the
3308 \fB\-\-stat\fR
3309 format containing total number of modified files, as well as number of added and deleted lines\&.
3312 \-X[<param1,param2,\&...>], \-\-dirstat[=<param1,param2,\&...>]
3313 .RS 4
3314 Output the distribution of relative amount of changes for each sub\-directory\&. The behavior of
3315 \fB\-\-dirstat\fR
3316 can be customized by passing it a comma separated list of parameters\&. The defaults are controlled by the
3317 \fBdiff\&.dirstat\fR
3318 configuration variable (see
3319 \fBgit-config\fR(1))\&. The following parameters are available:
3321 \fBchanges\fR
3322 .RS 4
3323 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\&.
3326 \fBlines\fR
3327 .RS 4
3328 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
3329 \fB\-\-dirstat\fR
3330 behavior than the
3331 \fBchanges\fR
3332 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
3333 \fB\-\-*stat\fR
3334 options\&.
3337 \fBfiles\fR
3338 .RS 4
3339 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
3340 \fB\-\-dirstat\fR
3341 behavior, since it does not have to look at the file contents at all\&.
3344 \fBcumulative\fR
3345 .RS 4
3346 Count changes in a child directory for the parent directory as well\&. Note that when using
3347 \fBcumulative\fR, the sum of the percentages reported may exceed 100%\&. The default (non\-cumulative) behavior can be specified with the
3348 \fBnoncumulative\fR
3349 parameter\&.
3352 <limit>
3353 .RS 4
3354 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\&.
3357 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:
3358 \fB\-\-dirstat=files,10,cumulative\fR\&.
3361 \-\-cumulative
3362 .RS 4
3363 Synonym for \-\-dirstat=cumulative
3366 \-\-dirstat\-by\-file[=<param1,param2>\&...]
3367 .RS 4
3368 Synonym for \-\-dirstat=files,<param1>,<param2>\&...
3371 \-\-summary
3372 .RS 4
3373 Output a condensed summary of extended header information such as creations, renames and mode changes\&.
3376 \-\-patch\-with\-stat
3377 .RS 4
3378 Synonym for
3379 \fB\-p \-\-stat\fR\&.
3383 .RS 4
3384 Separate the commits with NULs instead of newlines\&.
3386 Also, when
3387 \fB\-\-raw\fR
3389 \fB\-\-numstat\fR
3390 has been given, do not munge pathnames and use NULs as output field terminators\&.
3392 Without this option, pathnames with "unusual" characters are quoted as explained for the configuration variable
3393 \fBcore\&.quotePath\fR
3394 (see
3395 \fBgit-config\fR(1))\&.
3398 \-\-name\-only
3399 .RS 4
3400 Show only the name of each changed file in the post\-image tree\&. The file names are often encoded in UTF\-8\&. For more information see the discussion about encoding in the
3401 \fBgit-log\fR(1)
3402 manual page\&.
3405 \-\-name\-status
3406 .RS 4
3407 Show only the name(s) and status of each changed file\&. See the description of the
3408 \fB\-\-diff\-filter\fR
3409 option on what the status letters mean\&. Just like
3410 \fB\-\-name\-only\fR
3411 the file names are often encoded in UTF\-8\&.
3414 \-\-submodule[=<format>]
3415 .RS 4
3416 Specify how differences in submodules are shown\&. When specifying
3417 \fB\-\-submodule=short\fR
3419 \fIshort\fR
3420 format is used\&. This format just shows the names of the commits at the beginning and end of the range\&. When
3421 \fB\-\-submodule\fR
3423 \fB\-\-submodule=log\fR
3424 is specified, the
3425 \fIlog\fR
3426 format is used\&. This format lists the commits in the range like
3427 \fBgit-submodule\fR(1)
3428 \fBsummary\fR
3429 does\&. When
3430 \fB\-\-submodule=diff\fR
3431 is specified, the
3432 \fIdiff\fR
3433 format is used\&. This format shows an inline diff of the changes in the submodule contents between the commit range\&. Defaults to
3434 \fBdiff\&.submodule\fR
3435 or the
3436 \fIshort\fR
3437 format if the config option is unset\&.
3440 \-\-color[=<when>]
3441 .RS 4
3442 Show colored diff\&.
3443 \fB\-\-color\fR
3444 (i\&.e\&. without
3445 \fI=<when>\fR) is the same as
3446 \fB\-\-color=always\fR\&.
3447 \fI<when>\fR
3448 can be one of
3449 \fBalways\fR,
3450 \fBnever\fR, or
3451 \fBauto\fR\&.
3454 \-\-no\-color
3455 .RS 4
3456 Turn off colored diff\&. It is the same as
3457 \fB\-\-color=never\fR\&.
3460 \-\-color\-moved[=<mode>]
3461 .RS 4
3462 Moved lines of code are colored differently\&. The <mode> defaults to
3463 \fIno\fR
3464 if the option is not given and to
3465 \fIzebra\fR
3466 if the option with no mode is given\&. The mode must be one of:
3469 .RS 4
3470 Moved lines are not highlighted\&.
3473 default
3474 .RS 4
3475 Is a synonym for
3476 \fBzebra\fR\&. This may change to a more sensible mode in the future\&.
3479 plain
3480 .RS 4
3481 Any line that is added in one location and was removed in another location will be colored with
3482 \fIcolor\&.diff\&.newMoved\fR\&. Similarly
3483 \fIcolor\&.diff\&.oldMoved\fR
3484 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\&.
3487 blocks
3488 .RS 4
3489 Blocks of moved text of at least 20 alphanumeric characters are detected greedily\&. The detected blocks are painted using either the
3490 \fIcolor\&.diff\&.{old,new}Moved\fR
3491 color\&. Adjacent blocks cannot be told apart\&.
3494 zebra
3495 .RS 4
3496 Blocks of moved text are detected as in
3497 \fIblocks\fR
3498 mode\&. The blocks are painted using either the
3499 \fIcolor\&.diff\&.{old,new}Moved\fR
3500 color or
3501 \fIcolor\&.diff\&.{old,new}MovedAlternative\fR\&. The change between the two colors indicates that a new block was detected\&.
3504 dimmed\-zebra
3505 .RS 4
3506 Similar to
3507 \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\&.
3508 \fBdimmed_zebra\fR
3509 is a deprecated synonym\&.
3513 \-\-no\-color\-moved
3514 .RS 4
3515 Turn off move detection\&. This can be used to override configuration settings\&. It is the same as
3516 \fB\-\-color\-moved=no\fR\&.
3519 \-\-color\-moved\-ws=<modes>
3520 .RS 4
3521 This configures how whitespace is ignored when performing the move detection for
3522 \fB\-\-color\-moved\fR\&. These modes can be given as a comma separated list:
3525 .RS 4
3526 Do not ignore whitespace when performing move detection\&.
3529 ignore\-space\-at\-eol
3530 .RS 4
3531 Ignore changes in whitespace at EOL\&.
3534 ignore\-space\-change
3535 .RS 4
3536 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\&.
3539 ignore\-all\-space
3540 .RS 4
3541 Ignore whitespace when comparing lines\&. This ignores differences even if one line has whitespace where the other line has none\&.
3544 allow\-indentation\-change
3545 .RS 4
3546 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\&.
3550 \-\-no\-color\-moved\-ws
3551 .RS 4
3552 Do not ignore whitespace when performing move detection\&. This can be used to override configuration settings\&. It is the same as
3553 \fB\-\-color\-moved\-ws=no\fR\&.
3556 \-\-word\-diff[=<mode>]
3557 .RS 4
3558 Show a word diff, using the <mode> to delimit changed words\&. By default, words are delimited by whitespace; see
3559 \fB\-\-word\-diff\-regex\fR
3560 below\&. The <mode> defaults to
3561 \fIplain\fR, and must be one of:
3563 color
3564 .RS 4
3565 Highlight changed words using only colors\&. Implies
3566 \fB\-\-color\fR\&.
3569 plain
3570 .RS 4
3571 Show words as
3572 \fB[\-removed\-]\fR
3574 \fB{+added+}\fR\&. Makes no attempts to escape the delimiters if they appear in the input, so the output may be ambiguous\&.
3577 porcelain
3578 .RS 4
3579 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
3580 \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
3581 \fB~\fR
3582 on a line of its own\&.
3585 none
3586 .RS 4
3587 Disable word diff again\&.
3590 Note that despite the name of the first mode, color is used to highlight the changed parts in all modes if enabled\&.
3593 \-\-word\-diff\-regex=<regex>
3594 .RS 4
3595 Use <regex> to decide what a word is, instead of considering runs of non\-whitespace to be a word\&. Also implies
3596 \fB\-\-word\-diff\fR
3597 unless it was already enabled\&.
3599 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
3600 \fB|[^[:space:]]\fR
3601 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\&.
3603 For example,
3604 \fB\-\-word\-diff\-regex=\&.\fR
3605 will treat each character as a word and, correspondingly, show differences character by character\&.
3607 The regex can also be set via a diff driver or configuration option, see
3608 \fBgitattributes\fR(5)
3610 \fBgit-config\fR(1)\&. Giving it explicitly overrides any diff driver or configuration setting\&. Diff drivers override configuration settings\&.
3613 \-\-color\-words[=<regex>]
3614 .RS 4
3615 Equivalent to
3616 \fB\-\-word\-diff=color\fR
3617 plus (if a regex was specified)
3618 \fB\-\-word\-diff\-regex=<regex>\fR\&.
3621 \-\-no\-renames
3622 .RS 4
3623 Turn off rename detection, even when the configuration file gives the default to do so\&.
3626 \-\-[no\-]rename\-empty
3627 .RS 4
3628 Whether to use empty blobs as rename source\&.
3631 \-\-check
3632 .RS 4
3633 Warn if changes introduce conflict markers or whitespace errors\&. What are considered whitespace errors is controlled by
3634 \fBcore\&.whitespace\fR
3635 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\&.
3638 \-\-ws\-error\-highlight=<kind>
3639 .RS 4
3640 Highlight whitespace errors in the
3641 \fBcontext\fR,
3642 \fBold\fR
3644 \fBnew\fR
3645 lines of the diff\&. Multiple values are separated by comma,
3646 \fBnone\fR
3647 resets previous values,
3648 \fBdefault\fR
3649 reset the list to
3650 \fBnew\fR
3652 \fBall\fR
3653 is a shorthand for
3654 \fBold,new,context\fR\&. When this option is not given, and the configuration variable
3655 \fBdiff\&.wsErrorHighlight\fR
3656 is not set, only whitespace errors in
3657 \fBnew\fR
3658 lines are highlighted\&. The whitespace errors are colored with
3659 \fBcolor\&.diff\&.whitespace\fR\&.
3662 \-\-full\-index
3663 .RS 4
3664 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\&.
3667 \-\-binary
3668 .RS 4
3669 In addition to
3670 \fB\-\-full\-index\fR, output a binary diff that can be applied with
3671 \fBgit\-apply\fR\&. Implies
3672 \fB\-\-patch\fR\&.
3675 \-\-abbrev[=<n>]
3676 .RS 4
3677 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
3678 \fI<n>\fR
3679 hexdigits long that uniquely refers the object\&. In diff\-patch output format,
3680 \fB\-\-full\-index\fR
3681 takes higher precedence, i\&.e\&. if
3682 \fB\-\-full\-index\fR
3683 is specified, full blob names will be shown regardless of
3684 \fB\-\-abbrev\fR\&. Non default number of digits can be specified with
3685 \fB\-\-abbrev=<n>\fR\&.
3688 \-B[<n>][/<m>], \-\-break\-rewrites[=[<n>][/<m>]]
3689 .RS 4
3690 Break complete rewrite changes into pairs of delete and create\&. This serves two purposes:
3692 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
3693 \fBm\fR
3694 controls this aspect of the \-B option (defaults to 60%)\&.
3695 \fB\-B/70%\fR
3696 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)\&.
3698 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
3699 \fBn\fR
3700 controls this aspect of the \-B option (defaults to 50%)\&.
3701 \fB\-B20%\fR
3702 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\&.
3705 \-M[<n>], \-\-find\-renames[=<n>]
3706 .RS 4
3707 If generating diffs, detect and report renames for each commit\&. For following files across renames while traversing history, see
3708 \fB\-\-follow\fR\&. If
3709 \fBn\fR
3710 is specified, it is a threshold on the similarity index (i\&.e\&. amount of addition/deletions compared to the file\(cqs size)\&. For example,
3711 \fB\-M90%\fR
3712 means Git should consider a delete/add pair to be a rename if more than 90% of the file hasn\(cqt changed\&. Without a
3713 \fB%\fR
3714 sign, the number is to be read as a fraction, with a decimal point before it\&. I\&.e\&.,
3715 \fB\-M5\fR
3716 becomes 0\&.5, and is thus the same as
3717 \fB\-M50%\fR\&. Similarly,
3718 \fB\-M05\fR
3719 is the same as
3720 \fB\-M5%\fR\&. To limit detection to exact renames, use
3721 \fB\-M100%\fR\&. The default similarity index is 50%\&.
3724 \-C[<n>], \-\-find\-copies[=<n>]
3725 .RS 4
3726 Detect copies as well as renames\&. See also
3727 \fB\-\-find\-copies\-harder\fR\&. If
3728 \fBn\fR
3729 is specified, it has the same meaning as for
3730 \fB\-M<n>\fR\&.
3733 \-\-find\-copies\-harder
3734 .RS 4
3735 For performance reasons, by default,
3736 \fB\-C\fR
3737 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
3738 \fB\-C\fR
3739 option has the same effect\&.
3742 \-D, \-\-irreversible\-delete
3743 .RS 4
3744 Omit the preimage for deletes, i\&.e\&. print only the header but not the diff between the preimage and
3745 \fB/dev/null\fR\&. The resulting patch is not meant to be applied with
3746 \fBpatch\fR
3748 \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\&.
3750 When used together with
3751 \fB\-B\fR, omit also the preimage in the deletion part of a delete/create pair\&.
3754 \-l<num>
3755 .RS 4
3757 \fB\-M\fR
3759 \fB\-C\fR
3760 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\&.
3763 \-\-diff\-filter=[(A|C|D|M|R|T|U|X|B)\&...[*]]
3764 .RS 4
3765 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
3766 \fB*\fR
3767 (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\&.
3769 Also, these upper\-case letters can be downcased to exclude\&. E\&.g\&.
3770 \fB\-\-diff\-filter=ad\fR
3771 excludes added and deleted paths\&.
3773 Note that not all diffs can feature all types\&. For instance, copied and renamed entries cannot appear if detection for those types is disabled\&.
3776 \-S<string>
3777 .RS 4
3778 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\&.
3780 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
3781 \fB\-S\fR, and keep going until you get the very first version of the block\&.
3783 Binary files are searched as well\&.
3786 \-G<regex>
3787 .RS 4
3788 Look for differences whose patch text contains added/removed lines that match <regex>\&.
3790 To illustrate the difference between
3791 \fB\-S<regex> \-\-pickaxe\-regex\fR
3793 \fB\-G<regex>\fR, consider a commit with the following diff in the same file:
3795 .if n \{\
3796 .RS 4
3799 +    return frotz(nitfol, two\->ptr, 1, 0);
3800 \&.\&.\&.
3801 \-    hit = frotz(nitfol, mf2\&.ptr, 1, 0);
3803 .if n \{\
3807 While
3808 \fBgit log \-G"frotz\e(nitfol"\fR
3809 will show this commit,
3810 \fBgit log \-S"frotz\e(nitfol" \-\-pickaxe\-regex\fR
3811 will not (because the number of occurrences of that string did not change)\&.
3813 Unless
3814 \fB\-\-text\fR
3815 is supplied patches of binary files without a textconv filter will be ignored\&.
3817 See the
3818 \fIpickaxe\fR
3819 entry in
3820 \fBgitdiffcore\fR(7)
3821 for more information\&.
3824 \-\-find\-object=<object\-id>
3825 .RS 4
3826 Look for differences that change the number of occurrences of the specified object\&. Similar to
3827 \fB\-S\fR, just the argument is different in that it doesn\(cqt search for a specific string but for a specific object id\&.
3829 The object can be a blob or a submodule commit\&. It implies the
3830 \fB\-t\fR
3831 option in
3832 \fBgit\-log\fR
3833 to also find trees\&.
3836 \-\-pickaxe\-all
3837 .RS 4
3838 When
3839 \fB\-S\fR
3841 \fB\-G\fR
3842 finds a change, show all the changes in that changeset, not just the files that contain the change in <string>\&.
3845 \-\-pickaxe\-regex
3846 .RS 4
3847 Treat the <string> given to
3848 \fB\-S\fR
3849 as an extended POSIX regular expression to match\&.
3852 \-O<orderfile>
3853 .RS 4
3854 Control the order in which files appear in the output\&. This overrides the
3855 \fBdiff\&.orderFile\fR
3856 configuration variable (see
3857 \fBgit-config\fR(1))\&. To cancel
3858 \fBdiff\&.orderFile\fR, use
3859 \fB\-O/dev/null\fR\&.
3861 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\&.
3863 <orderfile> is parsed as follows:
3865 .RS 4
3866 .ie n \{\
3867 \h'-04'\(bu\h'+03'\c
3869 .el \{\
3870 .sp -1
3871 .IP \(bu 2.3
3873 Blank lines are ignored, so they can be used as separators for readability\&.
3876 .RS 4
3877 .ie n \{\
3878 \h'-04'\(bu\h'+03'\c
3880 .el \{\
3881 .sp -1
3882 .IP \(bu 2.3
3884 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\&.
3887 .RS 4
3888 .ie n \{\
3889 \h'-04'\(bu\h'+03'\c
3891 .el \{\
3892 .sp -1
3893 .IP \(bu 2.3
3895 Each other line contains a single pattern\&.
3898 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"\&.
3901 \-\-skip\-to=<file>, \-\-rotate\-to=<file>
3902 .RS 4
3903 Discard the files before the named <file> from the output (i\&.e\&.
3904 \fIskip to\fR), or move them to the end of the output (i\&.e\&.
3905 \fIrotate to\fR)\&. These options were invented primarily for the use of the
3906 \fBgit difftool\fR
3907 command, and may not be very useful otherwise\&.
3911 .RS 4
3912 Swap two inputs; that is, show differences from index or on\-disk file to tree contents\&.
3915 \-\-relative[=<path>], \-\-no\-relative
3916 .RS 4
3917 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\&.
3918 \fB\-\-no\-relative\fR
3919 can be used to countermand both
3920 \fBdiff\&.relative\fR
3921 config option and previous
3922 \fB\-\-relative\fR\&.
3925 \-a, \-\-text
3926 .RS 4
3927 Treat all files as text\&.
3930 \-\-ignore\-cr\-at\-eol
3931 .RS 4
3932 Ignore carriage\-return at the end of line when doing a comparison\&.
3935 \-\-ignore\-space\-at\-eol
3936 .RS 4
3937 Ignore changes in whitespace at EOL\&.
3940 \-b, \-\-ignore\-space\-change
3941 .RS 4
3942 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\&.
3945 \-w, \-\-ignore\-all\-space
3946 .RS 4
3947 Ignore whitespace when comparing lines\&. This ignores differences even if one line has whitespace where the other line has none\&.
3950 \-\-ignore\-blank\-lines
3951 .RS 4
3952 Ignore changes whose lines are all blank\&.
3955 \-I<regex>, \-\-ignore\-matching\-lines=<regex>
3956 .RS 4
3957 Ignore changes whose all lines match <regex>\&. This option may be specified more than once\&.
3960 \-\-inter\-hunk\-context=<lines>
3961 .RS 4
3962 Show the context between diff hunks, up to the specified number of lines, thereby fusing hunks that are close to each other\&. Defaults to
3963 \fBdiff\&.interHunkContext\fR
3964 or 0 if the config option is unset\&.
3967 \-W, \-\-function\-context
3968 .RS 4
3969 Show whole function as context lines for each change\&. The function names are determined in the same way as
3970 \fBgit diff\fR
3971 works out patch hunk headers (see
3972 \fIDefining a custom hunk\-header\fR
3974 \fBgitattributes\fR(5))\&.
3977 \-\-ext\-diff
3978 .RS 4
3979 Allow an external diff helper to be executed\&. If you set an external diff driver with
3980 \fBgitattributes\fR(5), you need to use this option with
3981 \fBgit-log\fR(1)
3982 and friends\&.
3985 \-\-no\-ext\-diff
3986 .RS 4
3987 Disallow external diff drivers\&.
3990 \-\-textconv, \-\-no\-textconv
3991 .RS 4
3992 Allow (or disallow) external text conversion filters to be run when comparing binary files\&. See
3993 \fBgitattributes\fR(5)
3994 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
3995 \fBgit-diff\fR(1)
3997 \fBgit-log\fR(1), but not for
3998 \fBgit-format-patch\fR(1)
3999 or diff plumbing commands\&.
4002 \-\-ignore\-submodules[=<when>]
4003 .RS 4
4004 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
4005 \fIignore\fR
4006 option in
4007 \fBgit-config\fR(1)
4009 \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\&.
4012 \-\-src\-prefix=<prefix>
4013 .RS 4
4014 Show the given source prefix instead of "a/"\&.
4017 \-\-dst\-prefix=<prefix>
4018 .RS 4
4019 Show the given destination prefix instead of "b/"\&.
4022 \-\-no\-prefix
4023 .RS 4
4024 Do not show any source or destination prefix\&.
4027 \-\-default\-prefix
4028 .RS 4
4029 Use the default source and destination prefixes ("a/" and "b/")\&. This overrides configuration variables such as
4030 \fBdiff\&.noprefix\fR,
4031 \fBdiff\&.srcPrefix\fR,
4032 \fBdiff\&.dstPrefix\fR, and
4033 \fBdiff\&.mnemonicPrefix\fR
4034 (see
4035 \fBgit\-config\fR(1))\&.
4038 \-\-line\-prefix=<prefix>
4039 .RS 4
4040 Prepend an additional prefix to every line of output\&.
4043 \-\-ita\-invisible\-in\-index
4044 .RS 4
4045 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
4046 \fB\-\-ita\-visible\-in\-index\fR\&. Both options are experimental and could be removed in future\&.
4049 For more detailed explanation on these common options, see also \fBgitdiffcore\fR(7)\&.
4050 .SH "GENERATING PATCH TEXT WITH \-P"
4052 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))\&.
4054 What the \-p option produces is slightly different from the traditional diff format:
4056 .RS 4
4057 .ie n \{\
4058 \h'-04' 1.\h'+01'\c
4060 .el \{\
4061 .sp -1
4062 .IP "  1." 4.2
4064 It is preceded by a "git diff" header that looks like this:
4066 .if n \{\
4067 .RS 4
4070 diff \-\-git a/file1 b/file2
4072 .if n \{\
4077 \fBa/\fR
4079 \fBb/\fR
4080 filenames are the same unless rename/copy is involved\&. Especially, even for a creation or a deletion,
4081 \fB/dev/null\fR
4083 \fInot\fR
4084 used in place of the
4085 \fBa/\fR
4087 \fBb/\fR
4088 filenames\&.
4090 When a rename/copy is involved,
4091 \fBfile1\fR
4093 \fBfile2\fR
4094 show the name of the source file of the rename/copy and the name of the file that the rename/copy produces, respectively\&.
4097 .RS 4
4098 .ie n \{\
4099 \h'-04' 2.\h'+01'\c
4101 .el \{\
4102 .sp -1
4103 .IP "  2." 4.2
4105 It is followed by one or more extended header lines:
4107 .if n \{\
4108 .RS 4
4111 old mode <mode>
4112 new mode <mode>
4113 deleted file mode <mode>
4114 new file mode <mode>
4115 copy from <path>
4116 copy to <path>
4117 rename from <path>
4118 rename to <path>
4119 similarity index <number>
4120 dissimilarity index <number>
4121 index <hash>\&.\&.<hash> <mode>
4123 .if n \{\
4127 File modes are printed as 6\-digit octal numbers including the file type and file permission bits\&.
4129 Path names in extended headers do not include the
4130 \fBa/\fR
4132 \fBb/\fR
4133 prefixes\&.
4135 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\&.
4137 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\&.
4140 .RS 4
4141 .ie n \{\
4142 \h'-04' 3.\h'+01'\c
4144 .el \{\
4145 .sp -1
4146 .IP "  3." 4.2
4148 Pathnames with "unusual" characters are quoted as explained for the configuration variable
4149 \fBcore\&.quotePath\fR
4150 (see
4151 \fBgit-config\fR(1))\&.
4154 .RS 4
4155 .ie n \{\
4156 \h'-04' 4.\h'+01'\c
4158 .el \{\
4159 .sp -1
4160 .IP "  4." 4.2
4162 All the
4163 \fBfile1\fR
4164 files in the output refer to files before the commit, and all the
4165 \fBfile2\fR
4166 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:
4168 .if n \{\
4169 .RS 4
4172 diff \-\-git a/a b/b
4173 rename from a
4174 rename to b
4175 diff \-\-git a/b b/a
4176 rename from b
4177 rename to a
4179 .if n \{\
4184 .RS 4
4185 .ie n \{\
4186 \h'-04' 5.\h'+01'\c
4188 .el \{\
4189 .sp -1
4190 .IP "  5." 4.2
4192 Hunk headers mention the name of the function to which the hunk applies\&. See "Defining a custom hunk\-header" in
4193 \fBgitattributes\fR(5)
4194 for details of how to tailor this to specific languages\&.
4196 .SH "COMBINED DIFF FORMAT"
4198 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 a specific format\&.
4200 A "combined diff" format looks like this:
4202 .if n \{\
4203 .RS 4
4206 diff \-\-combined describe\&.c
4207 index fabadb8,cc95eb0\&.\&.4866510
4208 \-\-\- a/describe\&.c
4209 +++ b/describe\&.c
4210 @@@ \-98,20 \-98,12 +98,20 @@@
4211         return (a_date > b_date) ? \-1 : (a_date == b_date) ? 0 : 1;
4212   }
4214 \- static void describe(char *arg)
4215  \-static void describe(struct commit *cmit, int last_one)
4216 ++static void describe(char *arg, int last_one)
4217   {
4218  +      unsigned char sha1[20];
4219  +      struct commit *cmit;
4220         struct commit_list *list;
4221         static int initialized = 0;
4222         struct commit_name *n;
4224  +      if (get_sha1(arg, sha1) < 0)
4225  +              usage(describe_usage);
4226  +      cmit = lookup_commit_reference(sha1);
4227  +      if (!cmit)
4228  +              usage(describe_usage);
4230         if (!initialized) {
4231                 initialized = 1;
4232                 for_each_ref(get_name);
4234 .if n \{\
4240 .RS 4
4241 .ie n \{\
4242 \h'-04' 1.\h'+01'\c
4244 .el \{\
4245 .sp -1
4246 .IP "  1." 4.2
4248 It is preceded by a "git diff" header, that looks like this (when the
4249 \fB\-c\fR
4250 option is used):
4252 .if n \{\
4253 .RS 4
4256 diff \-\-combined file
4258 .if n \{\
4262 or like this (when the
4263 \fB\-\-cc\fR
4264 option is used):
4266 .if n \{\
4267 .RS 4
4270 diff \-\-cc file
4272 .if n \{\
4277 .RS 4
4278 .ie n \{\
4279 \h'-04' 2.\h'+01'\c
4281 .el \{\
4282 .sp -1
4283 .IP "  2." 4.2
4285 It is followed by one or more extended header lines (this example shows a merge with two parents):
4287 .if n \{\
4288 .RS 4
4291 index <hash>,<hash>\&.\&.<hash>
4292 mode <mode>,<mode>\&.\&.<mode>
4293 new file mode <mode>
4294 deleted file mode <mode>,<mode>
4296 .if n \{\
4301 \fBmode <mode>,<mode>\&.\&.<mode>\fR
4302 line appears only if at least one of the <mode> is different from the rest\&. Extended headers with information about detected content movement (renames and copying detection) are designed to work with the diff of two <tree\-ish> and are not used by combined diff format\&.
4305 .RS 4
4306 .ie n \{\
4307 \h'-04' 3.\h'+01'\c
4309 .el \{\
4310 .sp -1
4311 .IP "  3." 4.2
4313 It is followed by a two\-line from\-file/to\-file header:
4315 .if n \{\
4316 .RS 4
4319 \-\-\- a/file
4320 +++ b/file
4322 .if n \{\
4326 Similar to the two\-line header for the traditional
4327 \fIunified\fR
4328 diff format,
4329 \fB/dev/null\fR
4330 is used to signal created or deleted files\&.
4332 However, if the \-\-combined\-all\-paths option is provided, instead of a two\-line from\-file/to\-file, you get an N+1 line from\-file/to\-file header, where N is the number of parents in the merge commit:
4334 .if n \{\
4335 .RS 4
4338 \-\-\- a/file
4339 \-\-\- a/file
4340 \-\-\- a/file
4341 +++ b/file
4343 .if n \{\
4347 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\&.
4350 .RS 4
4351 .ie n \{\
4352 \h'-04' 4.\h'+01'\c
4354 .el \{\
4355 .sp -1
4356 .IP "  4." 4.2
4358 Chunk header format is modified to prevent people from accidentally feeding it to
4359 \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
4360 \fIindex\fR
4361 header:
4363 .if n \{\
4364 .RS 4
4367 @@@ <from\-file\-range> <from\-file\-range> <to\-file\-range> @@@
4369 .if n \{\
4373 There are (number of parents + 1)
4374 \fB@\fR
4375 characters in the chunk header for combined diff format\&.
4378 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\&.
4380 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)\&.
4382 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)\&.
4384 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")\&.
4385 .SH "EXAMPLES"
4387 \fBgit log \-\-no\-merges\fR
4388 .RS 4
4389 Show the whole commit history, but skip any merges
4392 \fBgit log v2\&.6\&.12\&.\&. include/scsi drivers/scsi\fR
4393 .RS 4
4394 Show all commits since version
4395 \fIv2\&.6\&.12\fR
4396 that changed any file in the
4397 \fBinclude/scsi\fR
4399 \fBdrivers/scsi\fR
4400 subdirectories
4403 \fBgit log \-\-since="2 weeks ago" \-\- gitk\fR
4404 .RS 4
4405 Show the changes during the last two weeks to the file
4406 \fIgitk\fR\&. The
4407 \fB\-\-\fR
4408 is necessary to avoid confusion with the
4409 \fBbranch\fR
4410 named
4411 \fIgitk\fR
4414 \fBgit log \-\-name\-status release\&.\&.test\fR
4415 .RS 4
4416 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\&.
4419 \fBgit log \-\-follow builtin/rev\-list\&.c\fR
4420 .RS 4
4421 Shows the commits that changed
4422 \fBbuiltin/rev\-list\&.c\fR, including those commits that occurred before the file was given its present name\&.
4425 \fBgit log \-\-branches \-\-not \-\-remotes=origin\fR
4426 .RS 4
4427 Shows all commits that are in any of local branches but not in any of remote\-tracking branches for
4428 \fIorigin\fR
4429 (what you have that origin doesn\(cqt)\&.
4432 \fBgit log master \-\-not \-\-remotes=*/master\fR
4433 .RS 4
4434 Shows all commits that are in local master but not in any remote repository master branches\&.
4437 \fBgit log \-p \-m \-\-first\-parent\fR
4438 .RS 4
4439 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\&.
4442 \fBgit log \-L \*(Aq/int main/\*(Aq,/^}/:main\&.c\fR
4443 .RS 4
4444 Shows how the function
4445 \fBmain()\fR
4446 in the file
4447 \fBmain\&.c\fR
4448 evolved over time\&.
4451 \fBgit log \-3\fR
4452 .RS 4
4453 Limits the number of commits to show to 3\&.
4455 .SH "DISCUSSION"
4457 Git is to some extent character encoding agnostic\&.
4459 .RS 4
4460 .ie n \{\
4461 \h'-04'\(bu\h'+03'\c
4463 .el \{\
4464 .sp -1
4465 .IP \(bu 2.3
4467 The contents of the blob objects are uninterpreted sequences of bytes\&. There is no encoding translation at the core level\&.
4470 .RS 4
4471 .ie n \{\
4472 \h'-04'\(bu\h'+03'\c
4474 .el \{\
4475 .sp -1
4476 .IP \(bu 2.3
4478 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
4479 (see
4480 \fBgit-config\fR(1)),
4481 \fBgitignore\fR(5),
4482 \fBgitattributes\fR(5)
4484 \fBgitmodules\fR(5))\&.
4486 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\&.
4489 .RS 4
4490 .ie n \{\
4491 \h'-04'\(bu\h'+03'\c
4493 .el \{\
4494 .sp -1
4495 .IP \(bu 2.3
4497 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
4498 \fInot\fR
4499 UTF\-16/32, EBCDIC and CJK multi\-byte encodings (GBK, Shift\-JIS, Big5, EUC\-x, CP9xx etc\&.)\&.
4502 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\&.
4504 .RS 4
4505 .ie n \{\
4506 \h'-04' 1.\h'+01'\c
4508 .el \{\
4509 .sp -1
4510 .IP "  1." 4.2
4512 \fIgit commit\fR
4514 \fIgit commit\-tree\fR
4515 issue 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
4516 \fBi18n\&.commitEncoding\fR
4518 \fB\&.git/config\fR
4519 file, like this:
4521 .if n \{\
4522 .RS 4
4525 [i18n]
4526         commitEncoding = ISO\-8859\-1
4528 .if n \{\
4532 Commit objects created with the above setting record the value of
4533 \fBi18n\&.commitEncoding\fR
4534 in their
4535 \fBencoding\fR
4536 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\&.
4539 .RS 4
4540 .ie n \{\
4541 \h'-04' 2.\h'+01'\c
4543 .el \{\
4544 .sp -1
4545 .IP "  2." 4.2
4547 \fIgit log\fR,
4548 \fIgit show\fR,
4549 \fIgit blame\fR
4550 and friends look at the
4551 \fBencoding\fR
4552 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
4553 \fBi18n\&.logOutputEncoding\fR
4555 \fB\&.git/config\fR
4556 file, like this:
4558 .if n \{\
4559 .RS 4
4562 [i18n]
4563         logOutputEncoding = ISO\-8859\-1
4565 .if n \{\
4569 If you do not have this configuration variable, the value of
4570 \fBi18n\&.commitEncoding\fR
4571 is used instead\&.
4574 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\&.
4575 .SH "CONFIGURATION"
4577 See \fBgit-config\fR(1) for core variables and \fBgit-diff\fR(1) for settings related to diff generation\&.
4579 format\&.pretty
4580 .RS 4
4581 Default for the
4582 \fB\-\-format\fR
4583 option\&. (See
4584 \fIPretty Formats\fR
4585 above\&.) Defaults to
4586 \fBmedium\fR\&.
4589 i18n\&.logOutputEncoding
4590 .RS 4
4591 Encoding to use when displaying logs\&. (See
4592 \fIDiscussion\fR
4593 above\&.) Defaults to the value of
4594 \fBi18n\&.commitEncoding\fR
4595 if set, and UTF\-8 otherwise\&.
4598 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:
4600 log\&.abbrevCommit
4601 .RS 4
4602 If true, makes
4603 \fBgit-log\fR(1),
4604 \fBgit-show\fR(1), and
4605 \fBgit-whatchanged\fR(1)
4606 assume
4607 \fB\-\-abbrev\-commit\fR\&. You may override this option with
4608 \fB\-\-no\-abbrev\-commit\fR\&.
4611 log\&.date
4612 .RS 4
4613 Set the default date\-time mode for the
4614 \fIlog\fR
4615 command\&. Setting a value for log\&.date is similar to using
4616 \fIgit log\fR\*(Aqs
4617 \fB\-\-date\fR
4618 option\&. See
4619 \fBgit-log\fR(1)
4620 for details\&.
4622 If the format is set to "auto:foo" and the pager is in use, format "foo" will be used for the date format\&. Otherwise, "default" will be used\&.
4625 log\&.decorate
4626 .RS 4
4627 Print out the ref names of any commits that are shown by the log command\&. If
4628 \fIshort\fR
4629 is specified, the ref name prefixes
4630 \fIrefs/heads/\fR,
4631 \fIrefs/tags/\fR
4633 \fIrefs/remotes/\fR
4634 will not be printed\&. If
4635 \fIfull\fR
4636 is specified, the full ref name (including prefix) will be printed\&. If
4637 \fIauto\fR
4638 is specified, then if the output is going to a terminal, the ref names are shown as if
4639 \fIshort\fR
4640 were given, otherwise no ref names are shown\&. This is the same as the
4641 \fB\-\-decorate\fR
4642 option of the
4643 \fBgit log\fR\&.
4646 log\&.initialDecorationSet
4647 .RS 4
4648 By default,
4649 \fBgit log\fR
4650 only shows decorations for certain known ref namespaces\&. If
4651 \fIall\fR
4652 is specified, then show all refs as decorations\&.
4655 log\&.excludeDecoration
4656 .RS 4
4657 Exclude the specified patterns from the log decorations\&. This is similar to the
4658 \fB\-\-decorate\-refs\-exclude\fR
4659 command\-line option, but the config option can be overridden by the
4660 \fB\-\-decorate\-refs\fR
4661 option\&.
4664 log\&.diffMerges
4665 .RS 4
4666 Set diff format to be used when
4667 \fB\-\-diff\-merges=on\fR
4668 is specified, see
4669 \fB\-\-diff\-merges\fR
4671 \fBgit-log\fR(1)
4672 for details\&. Defaults to
4673 \fBseparate\fR\&.
4676 log\&.follow
4677 .RS 4
4679 \fBtrue\fR,
4680 \fBgit log\fR
4681 will act as if the
4682 \fB\-\-follow\fR
4683 option was used when a single <path> is given\&. This has the same limitations as
4684 \fB\-\-follow\fR, i\&.e\&. it cannot be used to follow multiple files and does not work well on non\-linear history\&.
4687 log\&.graphColors
4688 .RS 4
4689 A list of colors, separated by commas, that can be used to draw history lines in
4690 \fBgit log \-\-graph\fR\&.
4693 log\&.showRoot
4694 .RS 4
4695 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
4696 \fBgit-log\fR(1)
4698 \fBgit-whatchanged\fR(1), which normally hide the root commit will now show it\&. True by default\&.
4701 log\&.showSignature
4702 .RS 4
4703 If true, makes
4704 \fBgit-log\fR(1),
4705 \fBgit-show\fR(1), and
4706 \fBgit-whatchanged\fR(1)
4707 assume
4708 \fB\-\-show\-signature\fR\&.
4711 log\&.mailmap
4712 .RS 4
4713 If true, makes
4714 \fBgit-log\fR(1),
4715 \fBgit-show\fR(1), and
4716 \fBgit-whatchanged\fR(1)
4717 assume
4718 \fB\-\-use\-mailmap\fR, otherwise assume
4719 \fB\-\-no\-use\-mailmap\fR\&. True by default\&.
4722 notes\&.mergeStrategy
4723 .RS 4
4724 Which merge strategy to choose by default when resolving notes conflicts\&. Must be one of
4725 \fBmanual\fR,
4726 \fBours\fR,
4727 \fBtheirs\fR,
4728 \fBunion\fR, or
4729 \fBcat_sort_uniq\fR\&. Defaults to
4730 \fBmanual\fR\&. See the "NOTES MERGE STRATEGIES" section of
4731 \fBgit-notes\fR(1)
4732 for more information on each strategy\&.
4734 This setting can be overridden by passing the
4735 \fB\-\-strategy\fR
4736 option to
4737 \fBgit-notes\fR(1)\&.
4740 notes\&.<name>\&.mergeStrategy
4741 .RS 4
4742 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
4743 \fBgit-notes\fR(1)
4744 for more information on the available strategies\&.
4747 notes\&.displayRef
4748 .RS 4
4749 Which ref (or refs, if a glob or specified more than once), in addition to the default set by
4750 \fBcore\&.notesRef\fR
4752 \fBGIT_NOTES_REF\fR, to read notes from when showing commit messages with the
4753 \fIgit log\fR
4754 family of commands\&.
4756 This setting can be overridden with the
4757 \fBGIT_NOTES_DISPLAY_REF\fR
4758 environment variable, which must be a colon separated list of refs or globs\&.
4760 A warning will be issued for refs that do not exist, but a glob that does not match any refs is silently ignored\&.
4762 This setting can be disabled by the
4763 \fB\-\-no\-notes\fR
4764 option to the
4765 \fIgit log\fR
4766 family of commands, or by the
4767 \fB\-\-notes=<ref>\fR
4768 option accepted by those commands\&.
4770 The effective value of "core\&.notesRef" (possibly overridden by GIT_NOTES_REF) is also implicitly added to the list of refs to be displayed\&.
4773 notes\&.rewrite\&.<command>
4774 .RS 4
4775 When rewriting commits with <command> (currently
4776 \fBamend\fR
4778 \fBrebase\fR), if this variable is
4779 \fBfalse\fR, git will not copy notes from the original to the rewritten commit\&. Defaults to
4780 \fBtrue\fR\&. See also "\fBnotes\&.rewriteRef\fR" below\&.
4782 This setting can be overridden with the
4783 \fBGIT_NOTES_REWRITE_REF\fR
4784 environment variable, which must be a colon separated list of refs or globs\&.
4787 notes\&.rewriteMode
4788 .RS 4
4789 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
4790 \fBoverwrite\fR,
4791 \fBconcatenate\fR,
4792 \fBcat_sort_uniq\fR, or
4793 \fBignore\fR\&. Defaults to
4794 \fBconcatenate\fR\&.
4796 This setting can be overridden with the
4797 \fBGIT_NOTES_REWRITE_MODE\fR
4798 environment variable\&.
4801 notes\&.rewriteRef
4802 .RS 4
4803 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\&.
4805 Does not have a default value; you must configure this variable to enable note rewriting\&. Set it to
4806 \fBrefs/notes/commits\fR
4807 to enable rewriting for the default commit notes\&.
4809 Can be overridden with the
4810 \fBGIT_NOTES_REWRITE_REF\fR
4811 environment variable\&. See
4812 \fBnotes\&.rewrite\&.<command>\fR
4813 above for a further description of its format\&.
4815 .SH "GIT"
4817 Part of the \fBgit\fR(1) suite