Autogenerated manpages for v2.47.0-rc0-18-ge9356b
[git-manpages.git] / man1 / git-show.1
blob159c1ed46ade3c016ba82c45bb786b4b76242456
1 '\" t
2 .\"     Title: git-show
3 .\"    Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
4 .\" Generator: DocBook XSL Stylesheets v1.79.2 <http://docbook.sf.net/>
5 .\"      Date: 2024-09-30
6 .\"    Manual: Git Manual
7 .\"    Source: Git 2.47.0.rc0.18.ge9356ba3ea
8 .\"  Language: English
9 .\"
10 .TH "GIT\-SHOW" "1" "2024-09-30" "Git 2\&.47\&.0\&.rc0\&.18\&.ge" "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-show \- Show various types of objects
32 .SH "SYNOPSIS"
33 .sp
34 .nf
35 \fIgit show\fR [<options>] [<object>\&...\:]
36 .fi
37 .SH "DESCRIPTION"
38 .sp
39 Shows one or more objects (blobs, trees, tags and commits)\&.
40 .sp
41 For commits it shows the log message and textual diff\&. It also presents the merge commit in a special format as produced by \fIgit diff\-tree \-\-cc\fR\&.
42 .sp
43 For tags, it shows the tag message and the referenced objects\&.
44 .sp
45 For trees, it shows the names (equivalent to \fIgit ls\-tree\fR with \-\-name\-only)\&.
46 .sp
47 For plain blobs, it shows the plain contents\&.
48 .sp
49 Some options that \fIgit log\fR command understands can be used to control how the changes the commit introduces are shown\&.
50 .sp
51 This manual page describes only the most frequently used options\&.
52 .SH "OPTIONS"
53 .PP
54 <object>\&...\:
55 .RS 4
56 The names of objects to show (defaults to
57 \fIHEAD\fR)\&. For a more complete list of ways to spell object names, see "SPECIFYING REVISIONS" section in
58 \fBgitrevisions\fR(7)\&.
59 .RE
60 .PP
61 \-\-pretty[=<format>], \-\-format=<format>
62 .RS 4
63 Pretty\-print the contents of the commit logs in a given format, where
64 \fI<format>\fR
65 can be one of
66 \fIoneline\fR,
67 \fIshort\fR,
68 \fImedium\fR,
69 \fIfull\fR,
70 \fIfuller\fR,
71 \fIreference\fR,
72 \fIemail\fR,
73 \fIraw\fR,
74 \fIformat:<string>\fR
75 and
76 \fItformat:<string>\fR\&. When
77 \fI<format>\fR
78 is none of the above, and has
79 \fI%placeholder\fR
80 in it, it acts as if
81 \fI\-\-pretty=tformat:<format>\fR
82 were given\&.
83 .sp
84 See the "PRETTY FORMATS" section for some additional details for each format\&. When
85 \fI=<format>\fR
86 part is omitted, it defaults to
87 \fImedium\fR\&.
88 .sp
89 Note: you can specify the default pretty format in the repository configuration (see
90 \fBgit-config\fR(1))\&.
91 .RE
92 .PP
93 \-\-abbrev\-commit
94 .RS 4
95 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\&.
96 .sp
97 This should make "\-\-pretty=oneline" a whole lot more readable for people using 80\-column terminals\&.
98 .RE
99 .PP
100 \-\-no\-abbrev\-commit
101 .RS 4
102 Show the full 40\-byte hexadecimal commit object name\&. This negates
103 \fB\-\-abbrev\-commit\fR, either explicit or implied by other options such as "\-\-oneline"\&. It also overrides the
104 \fBlog\&.abbrevCommit\fR
105 variable\&.
108 \-\-oneline
109 .RS 4
110 This is a shorthand for "\-\-pretty=oneline \-\-abbrev\-commit" used together\&.
113 \-\-encoding=<encoding>
114 .RS 4
115 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
116 \fBX\fR
117 and we are outputting in
118 \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\&.
121 \-\-expand\-tabs=<n>, \-\-expand\-tabs, \-\-no\-expand\-tabs
122 .RS 4
123 Perform a tab expansion (replace each tab with enough spaces to fill to the next display column that is a multiple of
124 \fI<n>\fR) in the log message before showing it in the output\&.
125 \fB\-\-expand\-tabs\fR
126 is a short\-hand for
127 \fB\-\-expand\-tabs=8\fR, and
128 \fB\-\-no\-expand\-tabs\fR
129 is a short\-hand for
130 \fB\-\-expand\-tabs=0\fR, which disables tab expansion\&.
132 By default, tabs are expanded in pretty formats that indent the log message by 4 spaces (i\&.e\&.
133 \fImedium\fR, which is the default,
134 \fIfull\fR, and
135 \fIfuller\fR)\&.
138 \-\-notes[=<ref>]
139 .RS 4
140 Show the notes (see
141 \fBgit-notes\fR(1)) that annotate the commit, when showing the commit log message\&. This is the default for
142 \fBgit log\fR,
143 \fBgit show\fR
145 \fBgit whatchanged\fR
146 commands when there is no
147 \fB\-\-pretty\fR,
148 \fB\-\-format\fR, or
149 \fB\-\-oneline\fR
150 option given on the command line\&.
152 By default, the notes shown are from the notes refs listed in the
153 \fBcore\&.notesRef\fR
155 \fBnotes\&.displayRef\fR
156 variables (or corresponding environment overrides)\&. See
157 \fBgit-config\fR(1)
158 for more details\&.
160 With an optional
161 \fI<ref>\fR
162 argument, use the ref to find the notes to display\&. The ref can specify the full refname when it begins with
163 \fBrefs/notes/\fR; when it begins with
164 \fBnotes/\fR,
165 \fBrefs/\fR
166 and otherwise
167 \fBrefs/notes/\fR
168 is prefixed to form the full name of the ref\&.
170 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)\&.
173 \-\-no\-notes
174 .RS 4
175 Do not show notes\&. This negates the above
176 \fB\-\-notes\fR
177 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"\&.
180 \-\-show\-notes\-by\-default
181 .RS 4
182 Show the default notes unless options for displaying specific notes are given\&.
185 \-\-show\-notes[=<ref>], \-\-[no\-]standard\-notes
186 .RS 4
187 These options are deprecated\&. Use the above \-\-notes/\-\-no\-notes options instead\&.
190 \-\-show\-signature
191 .RS 4
192 Check the validity of a signed commit object by passing the signature to
193 \fBgpg \-\-verify\fR
194 and show the output\&.
196 .SH "PRETTY FORMATS"
198 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\&.
200 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:
202 .RS 4
203 .ie n \{\
204 \h'-04'\(bu\h'+03'\c
206 .el \{\
207 .sp -1
208 .IP \(bu 2.3
210 \fIoneline\fR
212 .if n \{\
213 .RS 4
216 <hash> <title\-line>
218 .if n \{\
222 This is designed to be as compact as possible\&.
225 .RS 4
226 .ie n \{\
227 \h'-04'\(bu\h'+03'\c
229 .el \{\
230 .sp -1
231 .IP \(bu 2.3
233 \fIshort\fR
235 .if n \{\
236 .RS 4
239 commit <hash>
240 Author: <author>
242 .if n \{\
246 .if n \{\
247 .RS 4
250 <title\-line>
252 .if n \{\
257 .RS 4
258 .ie n \{\
259 \h'-04'\(bu\h'+03'\c
261 .el \{\
262 .sp -1
263 .IP \(bu 2.3
265 \fImedium\fR
267 .if n \{\
268 .RS 4
271 commit <hash>
272 Author: <author>
273 Date:   <author\-date>
275 .if n \{\
279 .if n \{\
280 .RS 4
283 <title\-line>
285 .if n \{\
289 .if n \{\
290 .RS 4
293 <full\-commit\-message>
295 .if n \{\
300 .RS 4
301 .ie n \{\
302 \h'-04'\(bu\h'+03'\c
304 .el \{\
305 .sp -1
306 .IP \(bu 2.3
308 \fIfull\fR
310 .if n \{\
311 .RS 4
314 commit <hash>
315 Author: <author>
316 Commit: <committer>
318 .if n \{\
322 .if n \{\
323 .RS 4
326 <title\-line>
328 .if n \{\
332 .if n \{\
333 .RS 4
336 <full\-commit\-message>
338 .if n \{\
343 .RS 4
344 .ie n \{\
345 \h'-04'\(bu\h'+03'\c
347 .el \{\
348 .sp -1
349 .IP \(bu 2.3
351 \fIfuller\fR
353 .if n \{\
354 .RS 4
357 commit <hash>
358 Author:     <author>
359 AuthorDate: <author\-date>
360 Commit:     <committer>
361 CommitDate: <committer\-date>
363 .if n \{\
367 .if n \{\
368 .RS 4
371 <title\-line>
373 .if n \{\
377 .if n \{\
378 .RS 4
381 <full\-commit\-message>
383 .if n \{\
388 .RS 4
389 .ie n \{\
390 \h'-04'\(bu\h'+03'\c
392 .el \{\
393 .sp -1
394 .IP \(bu 2.3
396 \fIreference\fR
398 .if n \{\
399 .RS 4
402 <abbrev\-hash> (<title\-line>, <short\-author\-date>)
404 .if n \{\
408 This format is used to refer to another commit in a commit message and is the same as
409 \fB\-\-pretty=\*(Aqformat:%C(auto)%h (%s, %ad)\*(Aq\fR\&. By default, the date is formatted with
410 \fB\-\-date=short\fR
411 unless another
412 \fB\-\-date\fR
413 option is explicitly specified\&. As with any
414 \fBformat:\fR
415 with format placeholders, its output is not affected by other options like
416 \fB\-\-decorate\fR
418 \fB\-\-walk\-reflogs\fR\&.
421 .RS 4
422 .ie n \{\
423 \h'-04'\(bu\h'+03'\c
425 .el \{\
426 .sp -1
427 .IP \(bu 2.3
429 \fIemail\fR
431 .if n \{\
432 .RS 4
435 From <hash> <date>
436 From: <author>
437 Date: <author\-date>
438 Subject: [PATCH] <title\-line>
440 .if n \{\
444 .if n \{\
445 .RS 4
448 <full\-commit\-message>
450 .if n \{\
455 .RS 4
456 .ie n \{\
457 \h'-04'\(bu\h'+03'\c
459 .el \{\
460 .sp -1
461 .IP \(bu 2.3
463 \fImboxrd\fR
465 Like
466 \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\&.
469 .RS 4
470 .ie n \{\
471 \h'-04'\(bu\h'+03'\c
473 .el \{\
474 .sp -1
475 .IP \(bu 2.3
477 \fIraw\fR
480 \fIraw\fR
481 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
482 \fIparents\fR
483 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
484 \fBgit log \-\-raw\fR\&. To get full object names in a raw diff format, use
485 \fB\-\-no\-abbrev\fR\&.
488 .RS 4
489 .ie n \{\
490 \h'-04'\(bu\h'+03'\c
492 .el \{\
493 .sp -1
494 .IP \(bu 2.3
496 \fIformat:<format\-string>\fR
499 \fIformat:<format\-string>\fR
500 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
501 \fI%n\fR
502 instead of
503 \fI\en\fR\&.
505 E\&.g,
506 \fIformat:"The author of %h was %an, %ar%nThe title was >>%s<<%n"\fR
507 would show something like this:
509 .if n \{\
510 .RS 4
513 The author of fe6e0ee was Junio C Hamano, 23 hours ago
514 The title was >>t4119: test autocomputing \-p<n> for traditional diff input\&.<<
516 .if n \{\
520 The placeholders are:
522 .RS 4
523 .ie n \{\
524 \h'-04'\(bu\h'+03'\c
526 .el \{\
527 .sp -1
528 .IP \(bu 2.3
530 Placeholders that expand to a single literal character:
532 \fI%n\fR
533 .RS 4
534 newline
537 \fI%%\fR
538 .RS 4
539 a raw
540 \fI%\fR
543 \fI%x00\fR
544 .RS 4
545 \fI%x\fR
546 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)\&.
550 .RS 4
551 .ie n \{\
552 \h'-04'\(bu\h'+03'\c
554 .el \{\
555 .sp -1
556 .IP \(bu 2.3
558 Placeholders that affect formatting of later placeholders:
560 \fI%Cred\fR
561 .RS 4
562 switch color to red
565 \fI%Cgreen\fR
566 .RS 4
567 switch color to green
570 \fI%Cblue\fR
571 .RS 4
572 switch color to blue
575 \fI%Creset\fR
576 .RS 4
577 reset color
580 \fI%C(\&...\:)\fR
581 .RS 4
582 color specification, as described under Values in the "CONFIGURATION FILE" section of
583 \fBgit-config\fR(1)\&. By default, colors are shown only when enabled for log output (by
584 \fBcolor\&.diff\fR,
585 \fBcolor\&.ui\fR, or
586 \fB\-\-color\fR, and respecting the
587 \fBauto\fR
588 settings of the former if we are going to a terminal)\&.
589 \fB%C(auto,\&.\&.\&.)\fR
590 is accepted as a historical synonym for the default (e\&.g\&.,
591 \fB%C(auto,red)\fR)\&. Specifying
592 \fB%C(always,\&.\&.\&.)\fR
593 will show the colors even when color is not otherwise enabled (though consider just using
594 \fB\-\-color=always\fR
595 to enable color for the whole output, including this format and anything else git might color)\&.
596 \fBauto\fR
597 alone (i\&.e\&.
598 \fB%C(auto)\fR) will turn on auto coloring on the next placeholders until the color is switched again\&.
601 \fI%m\fR
602 .RS 4
603 left (\fB<\fR), right (\fB>\fR) or boundary (\fB\-\fR) mark
606 \fI%w([<w>[,<i1>[,<i2>]]])\fR
607 .RS 4
608 switch line wrapping, like the \-w option of
609 \fBgit-shortlog\fR(1)\&.
612 \fI%<( <N> [,trunc|ltrunc|mtrunc])\fR
613 .RS 4
614 make the next placeholder take at least N column widths, padding spaces on the right if necessary\&. Optionally truncate (with ellipsis
615 \fI\&.\&.\fR) at the left (ltrunc)
616 \fB\&.\&.ft\fR, the middle (mtrunc)
617 \fBmi\&.\&.le\fR, or the end (trunc)
618 \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\&.
621 \fI%<|( <M> )\fR
622 .RS 4
623 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\&.
626 \fI%>( <N> )\fR, \fI%>|( <M> )\fR
627 .RS 4
628 similar to
629 \fI%<( <N> )\fR,
630 \fI%<|( <M> )\fR
631 respectively, but padding spaces on the left
634 \fI%>>( <N> )\fR, \fI%>>|( <M> )\fR
635 .RS 4
636 similar to
637 \fI%>( <N> )\fR,
638 \fI%>|( <M> )\fR
639 respectively, except that if the next placeholder takes more spaces than given and there are spaces on its left, use those spaces
642 \fI%><( <N> )\fR, \fI%><|( <M> )\fR
643 .RS 4
644 similar to
645 \fI%<( <N> )\fR,
646 \fI%<|( <M> )\fR
647 respectively, but padding both sides (i\&.e\&. the text is centered)
651 .RS 4
652 .ie n \{\
653 \h'-04'\(bu\h'+03'\c
655 .el \{\
656 .sp -1
657 .IP \(bu 2.3
659 Placeholders that expand to information extracted from the commit:
661 \fI%H\fR
662 .RS 4
663 commit hash
666 \fI%h\fR
667 .RS 4
668 abbreviated commit hash
671 \fI%T\fR
672 .RS 4
673 tree hash
676 \fI%t\fR
677 .RS 4
678 abbreviated tree hash
681 \fI%P\fR
682 .RS 4
683 parent hashes
686 \fI%p\fR
687 .RS 4
688 abbreviated parent hashes
691 \fI%an\fR
692 .RS 4
693 author name
696 \fI%aN\fR
697 .RS 4
698 author name (respecting \&.mailmap, see
699 \fBgit-shortlog\fR(1)
701 \fBgit-blame\fR(1))
704 \fI%ae\fR
705 .RS 4
706 author email
709 \fI%aE\fR
710 .RS 4
711 author email (respecting \&.mailmap, see
712 \fBgit-shortlog\fR(1)
714 \fBgit-blame\fR(1))
717 \fI%al\fR
718 .RS 4
719 author email local\-part (the part before the
720 \fI@\fR
721 sign)
724 \fI%aL\fR
725 .RS 4
726 author local\-part (see
727 \fI%al\fR) respecting \&.mailmap, see
728 \fBgit-shortlog\fR(1)
730 \fBgit-blame\fR(1))
733 \fI%ad\fR
734 .RS 4
735 author date (format respects \-\-date= option)
738 \fI%aD\fR
739 .RS 4
740 author date, RFC2822 style
743 \fI%ar\fR
744 .RS 4
745 author date, relative
748 \fI%at\fR
749 .RS 4
750 author date, UNIX timestamp
753 \fI%ai\fR
754 .RS 4
755 author date, ISO 8601\-like format
758 \fI%aI\fR
759 .RS 4
760 author date, strict ISO 8601 format
763 \fI%as\fR
764 .RS 4
765 author date, short format (\fBYYYY\-MM\-DD\fR)
768 \fI%ah\fR
769 .RS 4
770 author date, human style (like the
771 \fB\-\-date=human\fR
772 option of
773 \fBgit-rev-list\fR(1))
776 \fI%cn\fR
777 .RS 4
778 committer name
781 \fI%cN\fR
782 .RS 4
783 committer name (respecting \&.mailmap, see
784 \fBgit-shortlog\fR(1)
786 \fBgit-blame\fR(1))
789 \fI%ce\fR
790 .RS 4
791 committer email
794 \fI%cE\fR
795 .RS 4
796 committer email (respecting \&.mailmap, see
797 \fBgit-shortlog\fR(1)
799 \fBgit-blame\fR(1))
802 \fI%cl\fR
803 .RS 4
804 committer email local\-part (the part before the
805 \fI@\fR
806 sign)
809 \fI%cL\fR
810 .RS 4
811 committer local\-part (see
812 \fI%cl\fR) respecting \&.mailmap, see
813 \fBgit-shortlog\fR(1)
815 \fBgit-blame\fR(1))
818 \fI%cd\fR
819 .RS 4
820 committer date (format respects \-\-date= option)
823 \fI%cD\fR
824 .RS 4
825 committer date, RFC2822 style
828 \fI%cr\fR
829 .RS 4
830 committer date, relative
833 \fI%ct\fR
834 .RS 4
835 committer date, UNIX timestamp
838 \fI%ci\fR
839 .RS 4
840 committer date, ISO 8601\-like format
843 \fI%cI\fR
844 .RS 4
845 committer date, strict ISO 8601 format
848 \fI%cs\fR
849 .RS 4
850 committer date, short format (\fBYYYY\-MM\-DD\fR)
853 \fI%ch\fR
854 .RS 4
855 committer date, human style (like the
856 \fB\-\-date=human\fR
857 option of
858 \fBgit-rev-list\fR(1))
861 \fI%d\fR
862 .RS 4
863 ref names, like the \-\-decorate option of
864 \fBgit-log\fR(1)
867 \fI%D\fR
868 .RS 4
869 ref names without the " (", ")" wrapping\&.
872 \fI%(decorate[:<options>])\fR
873 .RS 4
874 ref names with custom decorations\&. The
875 \fBdecorate\fR
876 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\&.
878 .RS 4
879 .ie n \{\
880 \h'-04'\(bu\h'+03'\c
882 .el \{\
883 .sp -1
884 .IP \(bu 2.3
886 \fIprefix=<value>\fR: Shown before the list of ref names\&. Defaults to "\ \&\fB(\fR"\&.
889 .RS 4
890 .ie n \{\
891 \h'-04'\(bu\h'+03'\c
893 .el \{\
894 .sp -1
895 .IP \(bu 2.3
897 \fIsuffix=<value>\fR: Shown after the list of ref names\&. Defaults to "\fB)\fR"\&.
900 .RS 4
901 .ie n \{\
902 \h'-04'\(bu\h'+03'\c
904 .el \{\
905 .sp -1
906 .IP \(bu 2.3
908 \fIseparator=<value>\fR: Shown between ref names\&. Defaults to "\fB,\fR\ \&"\&.
911 .RS 4
912 .ie n \{\
913 \h'-04'\(bu\h'+03'\c
915 .el \{\
916 .sp -1
917 .IP \(bu 2.3
919 \fIpointer=<value>\fR: Shown between HEAD and the branch it points to, if any\&. Defaults to "\ \&\fB\->\fR\ \&"\&.
922 .RS 4
923 .ie n \{\
924 \h'-04'\(bu\h'+03'\c
926 .el \{\
927 .sp -1
928 .IP \(bu 2.3
930 \fItag=<value>\fR: Shown before tag names\&. Defaults to "\fBtag:\fR\ \&"\&.
935 For example, to produce decorations with no wrapping or tag annotations, and spaces as separators:
938 \fB%(decorate:prefix=,suffix=,tag=,separator= )\fR
940 \fI%(describe[:<options>])\fR
941 .RS 4
942 human\-readable name, like
943 \fBgit-describe\fR(1); empty string for undescribable commits\&. The
944 \fBdescribe\fR
945 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\&.
947 .RS 4
948 .ie n \{\
949 \h'-04'\(bu\h'+03'\c
951 .el \{\
952 .sp -1
953 .IP \(bu 2.3
955 \fItags[=<bool\-value>]\fR: Instead of only considering annotated tags, consider lightweight tags as well\&.
958 .RS 4
959 .ie n \{\
960 \h'-04'\(bu\h'+03'\c
962 .el \{\
963 .sp -1
964 .IP \(bu 2.3
966 \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\&.
969 .RS 4
970 .ie n \{\
971 \h'-04'\(bu\h'+03'\c
973 .el \{\
974 .sp -1
975 .IP \(bu 2.3
977 \fImatch=<pattern>\fR: Only consider tags matching the given
978 \fBglob(7)\fR
979 pattern, excluding the "refs/tags/" prefix\&.
982 .RS 4
983 .ie n \{\
984 \h'-04'\(bu\h'+03'\c
986 .el \{\
987 .sp -1
988 .IP \(bu 2.3
990 \fIexclude=<pattern>\fR: Do not consider tags matching the given
991 \fBglob(7)\fR
992 pattern, excluding the "refs/tags/" prefix\&.
996 \fI%S\fR
997 .RS 4
998 ref name given on the command line by which the commit was reached (like
999 \fBgit log \-\-source\fR), only works with
1000 \fBgit log\fR
1003 \fI%e\fR
1004 .RS 4
1005 encoding
1008 \fI%s\fR
1009 .RS 4
1010 subject
1013 \fI%f\fR
1014 .RS 4
1015 sanitized subject line, suitable for a filename
1018 \fI%b\fR
1019 .RS 4
1020 body
1023 \fI%B\fR
1024 .RS 4
1025 raw body (unwrapped subject and body)
1028 \fI%N\fR
1029 .RS 4
1030 commit notes
1033 \fI%GG\fR
1034 .RS 4
1035 raw verification message from GPG for a signed commit
1038 \fI%G?\fR
1039 .RS 4
1040 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
1043 \fI%GS\fR
1044 .RS 4
1045 show the name of the signer for a signed commit
1048 \fI%GK\fR
1049 .RS 4
1050 show the key used to sign a signed commit
1053 \fI%GF\fR
1054 .RS 4
1055 show the fingerprint of the key used to sign a signed commit
1058 \fI%GP\fR
1059 .RS 4
1060 show the fingerprint of the primary key whose subkey was used to sign a signed commit
1063 \fI%GT\fR
1064 .RS 4
1065 show the trust level for the key used to sign a signed commit
1068 \fI%gD\fR
1069 .RS 4
1070 reflog selector, e\&.g\&.,
1071 \fBrefs/stash@{1}\fR
1073 \fBrefs/stash@{2 minutes ago}\fR; the format follows the rules described for the
1074 \fB\-g\fR
1075 option\&. The portion before the
1076 \fB@\fR
1077 is the refname as given on the command line (so
1078 \fBgit log \-g refs/heads/master\fR
1079 would yield
1080 \fBrefs/heads/master@{0}\fR)\&.
1083 \fI%gd\fR
1084 .RS 4
1085 shortened reflog selector; same as
1086 \fB%gD\fR, but the refname portion is shortened for human readability (so
1087 \fBrefs/heads/master\fR
1088 becomes just
1089 \fBmaster\fR)\&.
1092 \fI%gn\fR
1093 .RS 4
1094 reflog identity name
1097 \fI%gN\fR
1098 .RS 4
1099 reflog identity name (respecting \&.mailmap, see
1100 \fBgit-shortlog\fR(1)
1102 \fBgit-blame\fR(1))
1105 \fI%ge\fR
1106 .RS 4
1107 reflog identity email
1110 \fI%gE\fR
1111 .RS 4
1112 reflog identity email (respecting \&.mailmap, see
1113 \fBgit-shortlog\fR(1)
1115 \fBgit-blame\fR(1))
1118 \fI%gs\fR
1119 .RS 4
1120 reflog subject
1123 \fI%(trailers[:<options>])\fR
1124 .RS 4
1125 display the trailers of the body as interpreted by
1126 \fBgit-interpret-trailers\fR(1)\&. The
1127 \fBtrailers\fR
1128 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\&.
1130 .RS 4
1131 .ie n \{\
1132 \h'-04'\(bu\h'+03'\c
1134 .el \{\
1135 .sp -1
1136 .IP \(bu 2.3
1138 \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
1139 \fBonly\fR
1140 option so that non\-trailer lines in the trailer block are hidden\&. If that is not desired it can be disabled with
1141 \fBonly=false\fR\&. E\&.g\&.,
1142 \fB%(trailers:key=Reviewed\-by)\fR
1143 shows trailer lines with key
1144 \fBReviewed\-by\fR\&.
1147 .RS 4
1148 .ie n \{\
1149 \h'-04'\(bu\h'+03'\c
1151 .el \{\
1152 .sp -1
1153 .IP \(bu 2.3
1155 \fIonly[=<bool>]\fR: select whether non\-trailer lines from the trailer block should be included\&.
1158 .RS 4
1159 .ie n \{\
1160 \h'-04'\(bu\h'+03'\c
1162 .el \{\
1163 .sp -1
1164 .IP \(bu 2.3
1166 \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
1167 \fB%x2C\fR
1168 as it would otherwise be parsed as next option\&. E\&.g\&.,
1169 \fB%(trailers:key=Ticket,separator=%x2C )\fR
1170 shows all trailer lines whose key is "Ticket" separated by a comma and a space\&.
1173 .RS 4
1174 .ie n \{\
1175 \h'-04'\(bu\h'+03'\c
1177 .el \{\
1178 .sp -1
1179 .IP \(bu 2.3
1181 \fIunfold[=<bool>]\fR: make it behave as if interpret\-trailer\(cqs
1182 \fB\-\-unfold\fR
1183 option was given\&. E\&.g\&.,
1184 \fB%(trailers:only,unfold=true)\fR
1185 unfolds and shows all trailer lines\&.
1188 .RS 4
1189 .ie n \{\
1190 \h'-04'\(bu\h'+03'\c
1192 .el \{\
1193 .sp -1
1194 .IP \(bu 2.3
1196 \fIkeyonly[=<bool>]\fR: only show the key part of the trailer\&.
1199 .RS 4
1200 .ie n \{\
1201 \h'-04'\(bu\h'+03'\c
1203 .el \{\
1204 .sp -1
1205 .IP \(bu 2.3
1207 \fIvalueonly[=<bool>]\fR: only show the value part of the trailer\&.
1210 .RS 4
1211 .ie n \{\
1212 \h'-04'\(bu\h'+03'\c
1214 .el \{\
1215 .sp -1
1216 .IP \(bu 2.3
1218 \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
1219 \fIseparator=<sep>\fR
1220 above\&.
1224 .if n \{\
1227 .RS 4
1228 .it 1 an-trap
1229 .nr an-no-space-flag 1
1230 .nr an-break-flag 1
1232 .ps +1
1233 \fBNote\fR
1234 .ps -1
1237 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\&.
1238 .sp .5v
1241 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\&.
1243 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\&.
1245 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\&.
1247 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\&.
1249 .RS 4
1250 .ie n \{\
1251 \h'-04'\(bu\h'+03'\c
1253 .el \{\
1254 .sp -1
1255 .IP \(bu 2.3
1257 \fItformat:\fR
1260 \fItformat:\fR
1261 format works exactly like
1262 \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:
1264 .if n \{\
1265 .RS 4
1268 $ git log \-2 \-\-pretty=format:%h 4da45bef \e
1269   | perl \-pe \*(Aq$_ \&.= " \-\- NO NEWLINE\en" unless /\en/\*(Aq
1270 4da45be
1271 7134973 \-\- NO NEWLINE
1273 $ git log \-2 \-\-pretty=tformat:%h 4da45bef \e
1274   | perl \-pe \*(Aq$_ \&.= " \-\- NO NEWLINE\en" unless /\en/\*(Aq
1275 4da45be
1276 7134973
1278 .if n \{\
1282 In addition, any unrecognized string that has a
1283 \fB%\fR
1284 in it is interpreted as if it has
1285 \fBtformat:\fR
1286 in front of it\&. For example, these two are equivalent:
1288 .if n \{\
1289 .RS 4
1292 $ git log \-2 \-\-pretty=tformat:%h 4da45bef
1293 $ git log \-2 \-\-pretty=%h 4da45bef
1295 .if n \{\
1299 .SH "DIFF FORMATTING"
1301 The options below can be used to change the way \fBgit show\fR generates diff output\&.
1303 \-p, \-u, \-\-patch
1304 .RS 4
1305 Generate patch (see
1306 the section called \(lqGENERATING PATCH TEXT WITH \-P\(rq)\&.
1309 \-s, \-\-no\-patch
1310 .RS 4
1311 Suppress all output from the diff machinery\&. Useful for commands like
1312 \fBgit show\fR
1313 that show the patch by default to squelch their output, or to cancel the effect of options like
1314 \fB\-\-patch\fR,
1315 \fB\-\-stat\fR
1316 earlier on the command line in an alias\&.
1320 .RS 4
1321 Show diffs for merge commits in the default format\&. This is similar to
1322 \fI\-\-diff\-merges=on\fR, except
1323 \fB\-m\fR
1324 will produce no output unless
1325 \fB\-p\fR
1326 is given as well\&.
1330 .RS 4
1331 Produce combined diff output for merge commits\&. Shortcut for
1332 \fI\-\-diff\-merges=combined \-p\fR\&.
1335 \-\-cc
1336 .RS 4
1337 Produce dense combined diff output for merge commits\&. Shortcut for
1338 \fI\-\-diff\-merges=dense\-combined \-p\fR\&.
1341 \-\-dd
1342 .RS 4
1343 Produce diff with respect to first parent for both merge and regular commits\&. Shortcut for
1344 \fI\-\-diff\-merges=first\-parent \-p\fR\&.
1347 \-\-remerge\-diff
1348 .RS 4
1349 Produce remerge\-diff output for merge commits\&. Shortcut for
1350 \fI\-\-diff\-merges=remerge \-p\fR\&.
1353 \-\-no\-diff\-merges
1354 .RS 4
1355 Synonym for
1356 \fI\-\-diff\-merges=off\fR\&.
1359 \-\-diff\-merges=<format>
1360 .RS 4
1361 Specify diff format to be used for merge commits\&. Default is `dense\-combined` unless
1362 \fB\-\-first\-parent\fR
1363 is in use, in which case
1364 \fBfirst\-parent\fR
1365 is the default\&.
1367 The following formats are supported:
1369 off, none
1370 .RS 4
1371 Disable output of diffs for merge commits\&. Useful to override implied value\&.
1374 on, m
1375 .RS 4
1376 Make diff output for merge commits to be shown in the default format\&. The default format can be changed using
1377 \fBlog\&.diffMerges\fR
1378 configuration variable, whose default value is
1379 \fBseparate\fR\&.
1382 first\-parent, 1
1383 .RS 4
1384 Show full diff with respect to first parent\&. This is the same format as
1385 \fB\-\-patch\fR
1386 produces for non\-merge commits\&.
1389 separate
1390 .RS 4
1391 Show full diff with respect to each of parents\&. Separate log entry and diff is generated for each parent\&.
1394 combined, c
1395 .RS 4
1396 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\&.
1399 dense\-combined, cc
1400 .RS 4
1401 Further compress output produced by
1402 \fB\-\-diff\-merges=combined\fR
1403 by omitting uninteresting hunks whose contents in the parents have only two variants and the merge result picks one of them without modification\&.
1406 remerge, r
1407 .RS 4
1408 Remerge two\-parent merge commits to create a temporary tree object\(em\:potentially containing files with conflict markers and such\&. A diff is then shown between that temporary tree and the actual merge commit\&.
1410 The output emitted when this option is used is subject to change, and so is its interaction with other options (unless explicitly documented)\&.
1414 \-\-combined\-all\-paths
1415 .RS 4
1416 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
1417 \fB\-\-diff\-merges=[dense\-]combined\fR
1418 is in use, and is likely only useful if filename changes are detected (i\&.e\&. when either rename or copy detection have been requested)\&.
1421 \-U<n>, \-\-unified=<n>
1422 .RS 4
1423 Generate diffs with <n> lines of context instead of the usual three\&. Implies
1424 \fB\-\-patch\fR\&.
1427 \-\-output=<file>
1428 .RS 4
1429 Output to a specific file instead of stdout\&.
1432 \-\-output\-indicator\-new=<char>, \-\-output\-indicator\-old=<char>, \-\-output\-indicator\-context=<char>
1433 .RS 4
1434 Specify the character used to indicate new, old or context lines in the generated patch\&. Normally they are
1435 \fI+\fR,
1436 \fI\-\fR
1437 and \*(Aq \*(Aq respectively\&.
1440 \-\-raw
1441 .RS 4
1442 For each commit, show a summary of changes using the raw diff format\&. See the "RAW OUTPUT FORMAT" section of
1443 \fBgit-diff\fR(1)\&. This is different from showing the log itself in raw format, which you can achieve with
1444 \fB\-\-format=raw\fR\&.
1447 \-\-patch\-with\-raw
1448 .RS 4
1449 Synonym for
1450 \fB\-p \-\-raw\fR\&.
1454 .RS 4
1455 Show the tree objects in the diff output\&.
1458 \-\-indent\-heuristic
1459 .RS 4
1460 Enable the heuristic that shifts diff hunk boundaries to make patches easier to read\&. This is the default\&.
1463 \-\-no\-indent\-heuristic
1464 .RS 4
1465 Disable the indent heuristic\&.
1468 \-\-minimal
1469 .RS 4
1470 Spend extra time to make sure the smallest possible diff is produced\&.
1473 \-\-patience
1474 .RS 4
1475 Generate a diff using the "patience diff" algorithm\&.
1478 \-\-histogram
1479 .RS 4
1480 Generate a diff using the "histogram diff" algorithm\&.
1483 \-\-anchored=<text>
1484 .RS 4
1485 Generate a diff using the "anchored diff" algorithm\&.
1487 This option may be specified more than once\&.
1489 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\&.
1492 \-\-diff\-algorithm={patience|minimal|histogram|myers}
1493 .RS 4
1494 Choose a diff algorithm\&. The variants are as follows:
1496 \fBdefault\fR, \fBmyers\fR
1497 .RS 4
1498 The basic greedy diff algorithm\&. Currently, this is the default\&.
1501 \fBminimal\fR
1502 .RS 4
1503 Spend extra time to make sure the smallest possible diff is produced\&.
1506 \fBpatience\fR
1507 .RS 4
1508 Use "patience diff" algorithm when generating patches\&.
1511 \fBhistogram\fR
1512 .RS 4
1513 This algorithm extends the patience algorithm to "support low\-occurrence common elements"\&.
1516 For instance, if you configured the
1517 \fBdiff\&.algorithm\fR
1518 variable to a non\-default value and want to use the default one, then you have to use
1519 \fB\-\-diff\-algorithm=default\fR
1520 option\&.
1523 \-\-stat[=<width>[,<name\-width>[,<count>]]]
1524 .RS 4
1525 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
1526 \fB<width>\fR\&. The width of the filename part can be limited by giving another width
1527 \fB<name\-width>\fR
1528 after a comma or by setting
1529 \fBdiff\&.statNameWidth=<width>\fR\&. The width of the graph part can be limited by using
1530 \fB\-\-stat\-graph\-width=<width>\fR
1531 or by setting
1532 \fBdiff\&.statGraphWidth=<width>\fR\&. Using
1533 \fB\-\-stat\fR
1535 \fB\-\-stat\-graph\-width\fR
1536 affects all commands generating a stat graph, while setting
1537 \fBdiff\&.statNameWidth\fR
1539 \fBdiff\&.statGraphWidth\fR
1540 does not affect
1541 \fBgit format\-patch\fR\&. By giving a third parameter
1542 \fB<count>\fR, you can limit the output to the first
1543 \fB<count>\fR
1544 lines, followed by
1545 \fB\&.\&.\&.\fR
1546 if there are more\&.
1548 These parameters can also be set individually with
1549 \fB\-\-stat\-width=<width>\fR,
1550 \fB\-\-stat\-name\-width=<name\-width>\fR
1552 \fB\-\-stat\-count=<count>\fR\&.
1555 \-\-compact\-summary
1556 .RS 4
1557 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
1558 \fB\-\-stat\fR\&.
1561 \-\-numstat
1562 .RS 4
1563 Similar to
1564 \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
1565 \fB\-\fR
1566 instead of saying
1567 \fB0 0\fR\&.
1570 \-\-shortstat
1571 .RS 4
1572 Output only the last line of the
1573 \fB\-\-stat\fR
1574 format containing total number of modified files, as well as number of added and deleted lines\&.
1577 \-X[<param1,param2,\&...\:>], \-\-dirstat[=<param1,param2,\&...\:>]
1578 .RS 4
1579 Output the distribution of relative amount of changes for each sub\-directory\&. The behavior of
1580 \fB\-\-dirstat\fR
1581 can be customized by passing it a comma separated list of parameters\&. The defaults are controlled by the
1582 \fBdiff\&.dirstat\fR
1583 configuration variable (see
1584 \fBgit-config\fR(1))\&. The following parameters are available:
1586 \fBchanges\fR
1587 .RS 4
1588 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\&.
1591 \fBlines\fR
1592 .RS 4
1593 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
1594 \fB\-\-dirstat\fR
1595 behavior than the
1596 \fBchanges\fR
1597 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
1598 \fB\-\-*stat\fR
1599 options\&.
1602 \fBfiles\fR
1603 .RS 4
1604 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
1605 \fB\-\-dirstat\fR
1606 behavior, since it does not have to look at the file contents at all\&.
1609 \fBcumulative\fR
1610 .RS 4
1611 Count changes in a child directory for the parent directory as well\&. Note that when using
1612 \fBcumulative\fR, the sum of the percentages reported may exceed 100%\&. The default (non\-cumulative) behavior can be specified with the
1613 \fBnoncumulative\fR
1614 parameter\&.
1617 <limit>
1618 .RS 4
1619 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\&.
1622 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:
1623 \fB\-\-dirstat=files,10,cumulative\fR\&.
1626 \-\-cumulative
1627 .RS 4
1628 Synonym for \-\-dirstat=cumulative
1631 \-\-dirstat\-by\-file[=<param1,param2>\&...\:]
1632 .RS 4
1633 Synonym for \-\-dirstat=files,<param1>,<param2>\&...\:
1636 \-\-summary
1637 .RS 4
1638 Output a condensed summary of extended header information such as creations, renames and mode changes\&.
1641 \-\-patch\-with\-stat
1642 .RS 4
1643 Synonym for
1644 \fB\-p \-\-stat\fR\&.
1648 .RS 4
1649 Separate the commits with NULs instead of newlines\&.
1651 Also, when
1652 \fB\-\-raw\fR
1654 \fB\-\-numstat\fR
1655 has been given, do not munge pathnames and use NULs as output field terminators\&.
1657 Without this option, pathnames with "unusual" characters are quoted as explained for the configuration variable
1658 \fBcore\&.quotePath\fR
1659 (see
1660 \fBgit-config\fR(1))\&.
1663 \-\-name\-only
1664 .RS 4
1665 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
1666 \fBgit-log\fR(1)
1667 manual page\&.
1670 \-\-name\-status
1671 .RS 4
1672 Show only the name(s) and status of each changed file\&. See the description of the
1673 \fB\-\-diff\-filter\fR
1674 option on what the status letters mean\&. Just like
1675 \fB\-\-name\-only\fR
1676 the file names are often encoded in UTF\-8\&.
1679 \-\-submodule[=<format>]
1680 .RS 4
1681 Specify how differences in submodules are shown\&. When specifying
1682 \fB\-\-submodule=short\fR
1684 \fIshort\fR
1685 format is used\&. This format just shows the names of the commits at the beginning and end of the range\&. When
1686 \fB\-\-submodule\fR
1688 \fB\-\-submodule=log\fR
1689 is specified, the
1690 \fIlog\fR
1691 format is used\&. This format lists the commits in the range like
1692 \fBgit-submodule\fR(1)
1693 \fBsummary\fR
1694 does\&. When
1695 \fB\-\-submodule=diff\fR
1696 is specified, the
1697 \fIdiff\fR
1698 format is used\&. This format shows an inline diff of the changes in the submodule contents between the commit range\&. Defaults to
1699 \fBdiff\&.submodule\fR
1700 or the
1701 \fIshort\fR
1702 format if the config option is unset\&.
1705 \-\-color[=<when>]
1706 .RS 4
1707 Show colored diff\&.
1708 \fB\-\-color\fR
1709 (i\&.e\&. without
1710 \fI=<when>\fR) is the same as
1711 \fB\-\-color=always\fR\&.
1712 \fI<when>\fR
1713 can be one of
1714 \fBalways\fR,
1715 \fBnever\fR, or
1716 \fBauto\fR\&.
1719 \-\-no\-color
1720 .RS 4
1721 Turn off colored diff\&. It is the same as
1722 \fB\-\-color=never\fR\&.
1725 \-\-color\-moved[=<mode>]
1726 .RS 4
1727 Moved lines of code are colored differently\&. The <mode> defaults to
1728 \fIno\fR
1729 if the option is not given and to
1730 \fIzebra\fR
1731 if the option with no mode is given\&. The mode must be one of:
1734 .RS 4
1735 Moved lines are not highlighted\&.
1738 default
1739 .RS 4
1740 Is a synonym for
1741 \fBzebra\fR\&. This may change to a more sensible mode in the future\&.
1744 plain
1745 .RS 4
1746 Any line that is added in one location and was removed in another location will be colored with
1747 \fIcolor\&.diff\&.newMoved\fR\&. Similarly
1748 \fIcolor\&.diff\&.oldMoved\fR
1749 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\&.
1752 blocks
1753 .RS 4
1754 Blocks of moved text of at least 20 alphanumeric characters are detected greedily\&. The detected blocks are painted using either the
1755 \fIcolor\&.diff\&.{old,new}Moved\fR
1756 color\&. Adjacent blocks cannot be told apart\&.
1759 zebra
1760 .RS 4
1761 Blocks of moved text are detected as in
1762 \fIblocks\fR
1763 mode\&. The blocks are painted using either the
1764 \fIcolor\&.diff\&.{old,new}Moved\fR
1765 color or
1766 \fIcolor\&.diff\&.{old,new}MovedAlternative\fR\&. The change between the two colors indicates that a new block was detected\&.
1769 dimmed\-zebra
1770 .RS 4
1771 Similar to
1772 \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\&.
1773 \fBdimmed_zebra\fR
1774 is a deprecated synonym\&.
1778 \-\-no\-color\-moved
1779 .RS 4
1780 Turn off move detection\&. This can be used to override configuration settings\&. It is the same as
1781 \fB\-\-color\-moved=no\fR\&.
1784 \-\-color\-moved\-ws=<modes>
1785 .RS 4
1786 This configures how whitespace is ignored when performing the move detection for
1787 \fB\-\-color\-moved\fR\&. These modes can be given as a comma separated list:
1790 .RS 4
1791 Do not ignore whitespace when performing move detection\&.
1794 ignore\-space\-at\-eol
1795 .RS 4
1796 Ignore changes in whitespace at EOL\&.
1799 ignore\-space\-change
1800 .RS 4
1801 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\&.
1804 ignore\-all\-space
1805 .RS 4
1806 Ignore whitespace when comparing lines\&. This ignores differences even if one line has whitespace where the other line has none\&.
1809 allow\-indentation\-change
1810 .RS 4
1811 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\&.
1815 \-\-no\-color\-moved\-ws
1816 .RS 4
1817 Do not ignore whitespace when performing move detection\&. This can be used to override configuration settings\&. It is the same as
1818 \fB\-\-color\-moved\-ws=no\fR\&.
1821 \-\-word\-diff[=<mode>]
1822 .RS 4
1823 Show a word diff, using the <mode> to delimit changed words\&. By default, words are delimited by whitespace; see
1824 \fB\-\-word\-diff\-regex\fR
1825 below\&. The <mode> defaults to
1826 \fIplain\fR, and must be one of:
1828 color
1829 .RS 4
1830 Highlight changed words using only colors\&. Implies
1831 \fB\-\-color\fR\&.
1834 plain
1835 .RS 4
1836 Show words as
1837 \fB[\-removed\-]\fR
1839 \fB{+added+}\fR\&. Makes no attempts to escape the delimiters if they appear in the input, so the output may be ambiguous\&.
1842 porcelain
1843 .RS 4
1844 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
1845 \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
1846 \fB~\fR
1847 on a line of its own\&.
1850 none
1851 .RS 4
1852 Disable word diff again\&.
1855 Note that despite the name of the first mode, color is used to highlight the changed parts in all modes if enabled\&.
1858 \-\-word\-diff\-regex=<regex>
1859 .RS 4
1860 Use <regex> to decide what a word is, instead of considering runs of non\-whitespace to be a word\&. Also implies
1861 \fB\-\-word\-diff\fR
1862 unless it was already enabled\&.
1864 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
1865 \fB|[^[:space:]]\fR
1866 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\&.
1868 For example,
1869 \fB\-\-word\-diff\-regex=\&.\fR
1870 will treat each character as a word and, correspondingly, show differences character by character\&.
1872 The regex can also be set via a diff driver or configuration option, see
1873 \fBgitattributes\fR(5)
1875 \fBgit-config\fR(1)\&. Giving it explicitly overrides any diff driver or configuration setting\&. Diff drivers override configuration settings\&.
1878 \-\-color\-words[=<regex>]
1879 .RS 4
1880 Equivalent to
1881 \fB\-\-word\-diff=color\fR
1882 plus (if a regex was specified)
1883 \fB\-\-word\-diff\-regex=<regex>\fR\&.
1886 \-\-no\-renames
1887 .RS 4
1888 Turn off rename detection, even when the configuration file gives the default to do so\&.
1891 \-\-[no\-]rename\-empty
1892 .RS 4
1893 Whether to use empty blobs as rename source\&.
1896 \-\-check
1897 .RS 4
1898 Warn if changes introduce conflict markers or whitespace errors\&. What are considered whitespace errors is controlled by
1899 \fBcore\&.whitespace\fR
1900 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\&.
1903 \-\-ws\-error\-highlight=<kind>
1904 .RS 4
1905 Highlight whitespace errors in the
1906 \fBcontext\fR,
1907 \fBold\fR
1909 \fBnew\fR
1910 lines of the diff\&. Multiple values are separated by comma,
1911 \fBnone\fR
1912 resets previous values,
1913 \fBdefault\fR
1914 reset the list to
1915 \fBnew\fR
1917 \fBall\fR
1918 is a shorthand for
1919 \fBold,new,context\fR\&. When this option is not given, and the configuration variable
1920 \fBdiff\&.wsErrorHighlight\fR
1921 is not set, only whitespace errors in
1922 \fBnew\fR
1923 lines are highlighted\&. The whitespace errors are colored with
1924 \fBcolor\&.diff\&.whitespace\fR\&.
1927 \-\-full\-index
1928 .RS 4
1929 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\&.
1932 \-\-binary
1933 .RS 4
1934 In addition to
1935 \fB\-\-full\-index\fR, output a binary diff that can be applied with
1936 \fBgit\-apply\fR\&. Implies
1937 \fB\-\-patch\fR\&.
1940 \-\-abbrev[=<n>]
1941 .RS 4
1942 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
1943 \fI<n>\fR
1944 hexdigits long that uniquely refers the object\&. In diff\-patch output format,
1945 \fB\-\-full\-index\fR
1946 takes higher precedence, i\&.e\&. if
1947 \fB\-\-full\-index\fR
1948 is specified, full blob names will be shown regardless of
1949 \fB\-\-abbrev\fR\&. Non default number of digits can be specified with
1950 \fB\-\-abbrev=<n>\fR\&.
1953 \-B[<n>][/<m>], \-\-break\-rewrites[=[<n>][/<m>]]
1954 .RS 4
1955 Break complete rewrite changes into pairs of delete and create\&. This serves two purposes:
1957 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
1958 \fBm\fR
1959 controls this aspect of the \-B option (defaults to 60%)\&.
1960 \fB\-B/70%\fR
1961 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)\&.
1963 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
1964 \fBn\fR
1965 controls this aspect of the \-B option (defaults to 50%)\&.
1966 \fB\-B20%\fR
1967 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\&.
1970 \-M[<n>], \-\-find\-renames[=<n>]
1971 .RS 4
1972 If generating diffs, detect and report renames for each commit\&. For following files across renames while traversing history, see
1973 \fB\-\-follow\fR\&. If
1974 \fBn\fR
1975 is specified, it is a threshold on the similarity index (i\&.e\&. amount of addition/deletions compared to the file\(cqs size)\&. For example,
1976 \fB\-M90%\fR
1977 means Git should consider a delete/add pair to be a rename if more than 90% of the file hasn\(cqt changed\&. Without a
1978 \fB%\fR
1979 sign, the number is to be read as a fraction, with a decimal point before it\&. I\&.e\&.,
1980 \fB\-M5\fR
1981 becomes 0\&.5, and is thus the same as
1982 \fB\-M50%\fR\&. Similarly,
1983 \fB\-M05\fR
1984 is the same as
1985 \fB\-M5%\fR\&. To limit detection to exact renames, use
1986 \fB\-M100%\fR\&. The default similarity index is 50%\&.
1989 \-C[<n>], \-\-find\-copies[=<n>]
1990 .RS 4
1991 Detect copies as well as renames\&. See also
1992 \fB\-\-find\-copies\-harder\fR\&. If
1993 \fBn\fR
1994 is specified, it has the same meaning as for
1995 \fB\-M<n>\fR\&.
1998 \-\-find\-copies\-harder
1999 .RS 4
2000 For performance reasons, by default,
2001 \fB\-C\fR
2002 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
2003 \fB\-C\fR
2004 option has the same effect\&.
2007 \-D, \-\-irreversible\-delete
2008 .RS 4
2009 Omit the preimage for deletes, i\&.e\&. print only the header but not the diff between the preimage and
2010 \fB/dev/null\fR\&. The resulting patch is not meant to be applied with
2011 \fBpatch\fR
2013 \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\&.
2015 When used together with
2016 \fB\-B\fR, omit also the preimage in the deletion part of a delete/create pair\&.
2019 \-l<num>
2020 .RS 4
2022 \fB\-M\fR
2024 \fB\-C\fR
2025 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\&.
2028 \-\-diff\-filter=[(A|C|D|M|R|T|U|X|B)\&...\:[*]]
2029 .RS 4
2030 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
2031 \fB*\fR
2032 (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\&.
2034 Also, these upper\-case letters can be downcased to exclude\&. E\&.g\&.
2035 \fB\-\-diff\-filter=ad\fR
2036 excludes added and deleted paths\&.
2038 Note that not all diffs can feature all types\&. For instance, copied and renamed entries cannot appear if detection for those types is disabled\&.
2041 \-S<string>
2042 .RS 4
2043 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\&.
2045 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
2046 \fB\-S\fR, and keep going until you get the very first version of the block\&.
2048 Binary files are searched as well\&.
2051 \-G<regex>
2052 .RS 4
2053 Look for differences whose patch text contains added/removed lines that match <regex>\&.
2055 To illustrate the difference between
2056 \fB\-S<regex> \-\-pickaxe\-regex\fR
2058 \fB\-G<regex>\fR, consider a commit with the following diff in the same file:
2060 .if n \{\
2061 .RS 4
2064 +    return frotz(nitfol, two\->ptr, 1, 0);
2065 \&.\&.\&.
2066 \-    hit = frotz(nitfol, mf2\&.ptr, 1, 0);
2068 .if n \{\
2072 While
2073 \fBgit log \-G"frotz\e(nitfol"\fR
2074 will show this commit,
2075 \fBgit log \-S"frotz\e(nitfol" \-\-pickaxe\-regex\fR
2076 will not (because the number of occurrences of that string did not change)\&.
2078 Unless
2079 \fB\-\-text\fR
2080 is supplied patches of binary files without a textconv filter will be ignored\&.
2082 See the
2083 \fIpickaxe\fR
2084 entry in
2085 \fBgitdiffcore\fR(7)
2086 for more information\&.
2089 \-\-find\-object=<object\-id>
2090 .RS 4
2091 Look for differences that change the number of occurrences of the specified object\&. Similar to
2092 \fB\-S\fR, just the argument is different in that it doesn\(cqt search for a specific string but for a specific object id\&.
2094 The object can be a blob or a submodule commit\&. It implies the
2095 \fB\-t\fR
2096 option in
2097 \fBgit\-log\fR
2098 to also find trees\&.
2101 \-\-pickaxe\-all
2102 .RS 4
2103 When
2104 \fB\-S\fR
2106 \fB\-G\fR
2107 finds a change, show all the changes in that changeset, not just the files that contain the change in <string>\&.
2110 \-\-pickaxe\-regex
2111 .RS 4
2112 Treat the <string> given to
2113 \fB\-S\fR
2114 as an extended POSIX regular expression to match\&.
2117 \-O<orderfile>
2118 .RS 4
2119 Control the order in which files appear in the output\&. This overrides the
2120 \fBdiff\&.orderFile\fR
2121 configuration variable (see
2122 \fBgit-config\fR(1))\&. To cancel
2123 \fBdiff\&.orderFile\fR, use
2124 \fB\-O/dev/null\fR\&.
2126 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\&.
2128 <orderfile> is parsed as follows:
2130 .RS 4
2131 .ie n \{\
2132 \h'-04'\(bu\h'+03'\c
2134 .el \{\
2135 .sp -1
2136 .IP \(bu 2.3
2138 Blank lines are ignored, so they can be used as separators for readability\&.
2141 .RS 4
2142 .ie n \{\
2143 \h'-04'\(bu\h'+03'\c
2145 .el \{\
2146 .sp -1
2147 .IP \(bu 2.3
2149 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\&.
2152 .RS 4
2153 .ie n \{\
2154 \h'-04'\(bu\h'+03'\c
2156 .el \{\
2157 .sp -1
2158 .IP \(bu 2.3
2160 Each other line contains a single pattern\&.
2163 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"\&.
2166 \-\-skip\-to=<file>, \-\-rotate\-to=<file>
2167 .RS 4
2168 Discard the files before the named <file> from the output (i\&.e\&.
2169 \fIskip to\fR), or move them to the end of the output (i\&.e\&.
2170 \fIrotate to\fR)\&. These options were invented primarily for the use of the
2171 \fBgit difftool\fR
2172 command, and may not be very useful otherwise\&.
2176 .RS 4
2177 Swap two inputs; that is, show differences from index or on\-disk file to tree contents\&.
2180 \-\-relative[=<path>], \-\-no\-relative
2181 .RS 4
2182 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\&.
2183 \fB\-\-no\-relative\fR
2184 can be used to countermand both
2185 \fBdiff\&.relative\fR
2186 config option and previous
2187 \fB\-\-relative\fR\&.
2190 \-a, \-\-text
2191 .RS 4
2192 Treat all files as text\&.
2195 \-\-ignore\-cr\-at\-eol
2196 .RS 4
2197 Ignore carriage\-return at the end of line when doing a comparison\&.
2200 \-\-ignore\-space\-at\-eol
2201 .RS 4
2202 Ignore changes in whitespace at EOL\&.
2205 \-b, \-\-ignore\-space\-change
2206 .RS 4
2207 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\&.
2210 \-w, \-\-ignore\-all\-space
2211 .RS 4
2212 Ignore whitespace when comparing lines\&. This ignores differences even if one line has whitespace where the other line has none\&.
2215 \-\-ignore\-blank\-lines
2216 .RS 4
2217 Ignore changes whose lines are all blank\&.
2220 \-I<regex>, \-\-ignore\-matching\-lines=<regex>
2221 .RS 4
2222 Ignore changes whose all lines match <regex>\&. This option may be specified more than once\&.
2225 \-\-inter\-hunk\-context=<lines>
2226 .RS 4
2227 Show the context between diff hunks, up to the specified number of lines, thereby fusing hunks that are close to each other\&. Defaults to
2228 \fBdiff\&.interHunkContext\fR
2229 or 0 if the config option is unset\&.
2232 \-W, \-\-function\-context
2233 .RS 4
2234 Show whole function as context lines for each change\&. The function names are determined in the same way as
2235 \fBgit diff\fR
2236 works out patch hunk headers (see
2237 \fIDefining a custom hunk\-header\fR
2239 \fBgitattributes\fR(5))\&.
2242 \-\-ext\-diff
2243 .RS 4
2244 Allow an external diff helper to be executed\&. If you set an external diff driver with
2245 \fBgitattributes\fR(5), you need to use this option with
2246 \fBgit-log\fR(1)
2247 and friends\&.
2250 \-\-no\-ext\-diff
2251 .RS 4
2252 Disallow external diff drivers\&.
2255 \-\-textconv, \-\-no\-textconv
2256 .RS 4
2257 Allow (or disallow) external text conversion filters to be run when comparing binary files\&. See
2258 \fBgitattributes\fR(5)
2259 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
2260 \fBgit-diff\fR(1)
2262 \fBgit-log\fR(1), but not for
2263 \fBgit-format-patch\fR(1)
2264 or diff plumbing commands\&.
2267 \-\-ignore\-submodules[=<when>]
2268 .RS 4
2269 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
2270 \fIignore\fR
2271 option in
2272 \fBgit-config\fR(1)
2274 \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\&.
2277 \-\-src\-prefix=<prefix>
2278 .RS 4
2279 Show the given source prefix instead of "a/"\&.
2282 \-\-dst\-prefix=<prefix>
2283 .RS 4
2284 Show the given destination prefix instead of "b/"\&.
2287 \-\-no\-prefix
2288 .RS 4
2289 Do not show any source or destination prefix\&.
2292 \-\-default\-prefix
2293 .RS 4
2294 Use the default source and destination prefixes ("a/" and "b/")\&. This overrides configuration variables such as
2295 \fBdiff\&.noprefix\fR,
2296 \fBdiff\&.srcPrefix\fR,
2297 \fBdiff\&.dstPrefix\fR, and
2298 \fBdiff\&.mnemonicPrefix\fR
2299 (see
2300 \fBgit\-config\fR(1))\&.
2303 \-\-line\-prefix=<prefix>
2304 .RS 4
2305 Prepend an additional prefix to every line of output\&.
2308 \-\-ita\-invisible\-in\-index
2309 .RS 4
2310 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
2311 \fB\-\-ita\-visible\-in\-index\fR\&. Both options are experimental and could be removed in future\&.
2314 For more detailed explanation on these common options, see also \fBgitdiffcore\fR(7)\&.
2315 .SH "GENERATING PATCH TEXT WITH \-P"
2317 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))\&.
2319 What the \-p option produces is slightly different from the traditional diff format:
2321 .RS 4
2322 .ie n \{\
2323 \h'-04' 1.\h'+01'\c
2325 .el \{\
2326 .sp -1
2327 .IP "  1." 4.2
2329 It is preceded by a "git diff" header that looks like this:
2331 .if n \{\
2332 .RS 4
2335 diff \-\-git a/file1 b/file2
2337 .if n \{\
2342 \fBa/\fR
2344 \fBb/\fR
2345 filenames are the same unless rename/copy is involved\&. Especially, even for a creation or a deletion,
2346 \fB/dev/null\fR
2348 \fInot\fR
2349 used in place of the
2350 \fBa/\fR
2352 \fBb/\fR
2353 filenames\&.
2355 When a rename/copy is involved,
2356 \fBfile1\fR
2358 \fBfile2\fR
2359 show the name of the source file of the rename/copy and the name of the file that the rename/copy produces, respectively\&.
2362 .RS 4
2363 .ie n \{\
2364 \h'-04' 2.\h'+01'\c
2366 .el \{\
2367 .sp -1
2368 .IP "  2." 4.2
2370 It is followed by one or more extended header lines:
2372 .if n \{\
2373 .RS 4
2376 old mode <mode>
2377 new mode <mode>
2378 deleted file mode <mode>
2379 new file mode <mode>
2380 copy from <path>
2381 copy to <path>
2382 rename from <path>
2383 rename to <path>
2384 similarity index <number>
2385 dissimilarity index <number>
2386 index <hash>\&.\&.<hash> <mode>
2388 .if n \{\
2392 File modes are printed as 6\-digit octal numbers including the file type and file permission bits\&.
2394 Path names in extended headers do not include the
2395 \fBa/\fR
2397 \fBb/\fR
2398 prefixes\&.
2400 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\&.
2402 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\&.
2405 .RS 4
2406 .ie n \{\
2407 \h'-04' 3.\h'+01'\c
2409 .el \{\
2410 .sp -1
2411 .IP "  3." 4.2
2413 Pathnames with "unusual" characters are quoted as explained for the configuration variable
2414 \fBcore\&.quotePath\fR
2415 (see
2416 \fBgit-config\fR(1))\&.
2419 .RS 4
2420 .ie n \{\
2421 \h'-04' 4.\h'+01'\c
2423 .el \{\
2424 .sp -1
2425 .IP "  4." 4.2
2427 All the
2428 \fBfile1\fR
2429 files in the output refer to files before the commit, and all the
2430 \fBfile2\fR
2431 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:
2433 .if n \{\
2434 .RS 4
2437 diff \-\-git a/a b/b
2438 rename from a
2439 rename to b
2440 diff \-\-git a/b b/a
2441 rename from b
2442 rename to a
2444 .if n \{\
2449 .RS 4
2450 .ie n \{\
2451 \h'-04' 5.\h'+01'\c
2453 .el \{\
2454 .sp -1
2455 .IP "  5." 4.2
2457 Hunk headers mention the name of the function to which the hunk applies\&. See "Defining a custom hunk\-header" in
2458 \fBgitattributes\fR(5)
2459 for details of how to tailor this to specific languages\&.
2461 .SH "COMBINED DIFF FORMAT"
2463 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\&.
2465 A "combined diff" format looks like this:
2467 .if n \{\
2468 .RS 4
2471 diff \-\-combined describe\&.c
2472 index fabadb8,cc95eb0\&.\&.4866510
2473 \-\-\- a/describe\&.c
2474 +++ b/describe\&.c
2475 @@@ \-98,20 \-98,12 +98,20 @@@
2476         return (a_date > b_date) ? \-1 : (a_date == b_date) ? 0 : 1;
2477   }
2479 \- static void describe(char *arg)
2480  \-static void describe(struct commit *cmit, int last_one)
2481 ++static void describe(char *arg, int last_one)
2482   {
2483  +      unsigned char sha1[20];
2484  +      struct commit *cmit;
2485         struct commit_list *list;
2486         static int initialized = 0;
2487         struct commit_name *n;
2489  +      if (get_sha1(arg, sha1) < 0)
2490  +              usage(describe_usage);
2491  +      cmit = lookup_commit_reference(sha1);
2492  +      if (!cmit)
2493  +              usage(describe_usage);
2495         if (!initialized) {
2496                 initialized = 1;
2497                 for_each_ref(get_name);
2499 .if n \{\
2503 .RS 4
2504 .ie n \{\
2505 \h'-04' 1.\h'+01'\c
2507 .el \{\
2508 .sp -1
2509 .IP "  1." 4.2
2511 It is preceded by a "git diff" header, that looks like this (when the
2512 \fB\-c\fR
2513 option is used):
2515 .if n \{\
2516 .RS 4
2519 diff \-\-combined file
2521 .if n \{\
2525 or like this (when the
2526 \fB\-\-cc\fR
2527 option is used):
2529 .if n \{\
2530 .RS 4
2533 diff \-\-cc file
2535 .if n \{\
2540 .RS 4
2541 .ie n \{\
2542 \h'-04' 2.\h'+01'\c
2544 .el \{\
2545 .sp -1
2546 .IP "  2." 4.2
2548 It is followed by one or more extended header lines (this example shows a merge with two parents):
2550 .if n \{\
2551 .RS 4
2554 index <hash>,<hash>\&.\&.<hash>
2555 mode <mode>,<mode>\&.\&.<mode>
2556 new file mode <mode>
2557 deleted file mode <mode>,<mode>
2559 .if n \{\
2564 \fBmode <mode>,<mode>\&.\&.<mode>\fR
2565 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\&.
2568 .RS 4
2569 .ie n \{\
2570 \h'-04' 3.\h'+01'\c
2572 .el \{\
2573 .sp -1
2574 .IP "  3." 4.2
2576 It is followed by a two\-line from\-file/to\-file header:
2578 .if n \{\
2579 .RS 4
2582 \-\-\- a/file
2583 +++ b/file
2585 .if n \{\
2589 Similar to the two\-line header for the traditional
2590 \fIunified\fR
2591 diff format,
2592 \fB/dev/null\fR
2593 is used to signal created or deleted files\&.
2595 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:
2597 .if n \{\
2598 .RS 4
2601 \-\-\- a/file
2602 \-\-\- a/file
2603 \-\-\- a/file
2604 +++ b/file
2606 .if n \{\
2610 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\&.
2613 .RS 4
2614 .ie n \{\
2615 \h'-04' 4.\h'+01'\c
2617 .el \{\
2618 .sp -1
2619 .IP "  4." 4.2
2621 Chunk header format is modified to prevent people from accidentally feeding it to
2622 \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
2623 \fIindex\fR
2624 header:
2626 .if n \{\
2627 .RS 4
2630 @@@ <from\-file\-range> <from\-file\-range> <to\-file\-range> @@@
2632 .if n \{\
2636 There are (number of parents + 1)
2637 \fB@\fR
2638 characters in the chunk header for combined diff format\&.
2641 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\&.
2643 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)\&.
2645 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)\&.
2647 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")\&.
2648 .SH "EXAMPLES"
2650 \fBgit show v1\&.0\&.0\fR
2651 .RS 4
2652 Shows the tag
2653 \fBv1\&.0\&.0\fR, along with the object the tag points at\&.
2656 \fBgit show v1\&.0\&.0^{tree}\fR
2657 .RS 4
2658 Shows the tree pointed to by the tag
2659 \fBv1\&.0\&.0\fR\&.
2662 \fBgit show \-s \-\-format=%s v1\&.0\&.0^{commit}\fR
2663 .RS 4
2664 Shows the subject of the commit pointed to by the tag
2665 \fBv1\&.0\&.0\fR\&.
2668 \fBgit show next~10:Documentation/README\fR
2669 .RS 4
2670 Shows the contents of the file
2671 \fBDocumentation/README\fR
2672 as they were current in the 10th last commit of the branch
2673 \fBnext\fR\&.
2676 \fBgit show master:Makefile master:t/Makefile\fR
2677 .RS 4
2678 Concatenates the contents of said Makefiles in the head of the branch
2679 \fBmaster\fR\&.
2681 .SH "DISCUSSION"
2683 Git is to some extent character encoding agnostic\&.
2685 .RS 4
2686 .ie n \{\
2687 \h'-04'\(bu\h'+03'\c
2689 .el \{\
2690 .sp -1
2691 .IP \(bu 2.3
2693 The contents of the blob objects are uninterpreted sequences of bytes\&. There is no encoding translation at the core level\&.
2696 .RS 4
2697 .ie n \{\
2698 \h'-04'\(bu\h'+03'\c
2700 .el \{\
2701 .sp -1
2702 .IP \(bu 2.3
2704 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
2705 (see
2706 \fBgit-config\fR(1)),
2707 \fBgitignore\fR(5),
2708 \fBgitattributes\fR(5)
2710 \fBgitmodules\fR(5))\&.
2712 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\&.
2715 .RS 4
2716 .ie n \{\
2717 \h'-04'\(bu\h'+03'\c
2719 .el \{\
2720 .sp -1
2721 .IP \(bu 2.3
2723 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
2724 \fInot\fR
2725 UTF\-16/32, EBCDIC and CJK multi\-byte encodings (GBK, Shift\-JIS, Big5, EUC\-x, CP9xx etc\&.)\&.
2728 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\&.
2730 .RS 4
2731 .ie n \{\
2732 \h'-04' 1.\h'+01'\c
2734 .el \{\
2735 .sp -1
2736 .IP "  1." 4.2
2738 \fIgit commit\fR
2740 \fIgit commit\-tree\fR
2741 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
2742 \fBi18n\&.commitEncoding\fR
2744 \fB\&.git/config\fR
2745 file, like this:
2747 .if n \{\
2748 .RS 4
2751 [i18n]
2752         commitEncoding = ISO\-8859\-1
2754 .if n \{\
2758 Commit objects created with the above setting record the value of
2759 \fBi18n\&.commitEncoding\fR
2760 in their
2761 \fBencoding\fR
2762 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\&.
2765 .RS 4
2766 .ie n \{\
2767 \h'-04' 2.\h'+01'\c
2769 .el \{\
2770 .sp -1
2771 .IP "  2." 4.2
2773 \fIgit log\fR,
2774 \fIgit show\fR,
2775 \fIgit blame\fR
2776 and friends look at the
2777 \fBencoding\fR
2778 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
2779 \fBi18n\&.logOutputEncoding\fR
2781 \fB\&.git/config\fR
2782 file, like this:
2784 .if n \{\
2785 .RS 4
2788 [i18n]
2789         logOutputEncoding = ISO\-8859\-1
2791 .if n \{\
2795 If you do not have this configuration variable, the value of
2796 \fBi18n\&.commitEncoding\fR
2797 is used instead\&.
2800 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\&.
2801 .SH "GIT"
2803 Part of the \fBgit\fR(1) suite