Autogenerated manpages for v2.39.1-231-ga7caae
[git-manpages.git] / man1 / git-diff.1
blob9e895e52ecc7b305213fa18c0273a2fc0a7a9d4a
1 '\" t
2 .\"     Title: git-diff
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: 01/17/2023
6 .\"    Manual: Git Manual
7 .\"    Source: Git 2.39.1.231.ga7caae2729
8 .\"  Language: English
9 .\"
10 .TH "GIT\-DIFF" "1" "01/17/2023" "Git 2\&.39\&.1\&.231\&.ga7caae" "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-diff \- Show changes between commits, commit and working tree, etc
32 .SH "SYNOPSIS"
33 .sp
34 .nf
35 \fIgit diff\fR [<options>] [<commit>] [\-\-] [<path>\&...]
36 \fIgit diff\fR [<options>] \-\-cached [\-\-merge\-base] [<commit>] [\-\-] [<path>\&...]
37 \fIgit diff\fR [<options>] [\-\-merge\-base] <commit> [<commit>\&...] <commit> [\-\-] [<path>\&...]
38 \fIgit diff\fR [<options>] <commit>\&...<commit> [\-\-] [<path>\&...]
39 \fIgit diff\fR [<options>] <blob> <blob>
40 \fIgit diff\fR [<options>] \-\-no\-index [\-\-] <path> <path>
41 .fi
42 .sp
43 .SH "DESCRIPTION"
44 .sp
45 Show changes between the working tree and the index or a tree, changes between the index and a tree, changes between two trees, changes resulting from a merge, changes between two blob objects, or changes between two files on disk\&.
46 .PP
47 \fIgit diff\fR [<options>] [\-\-] [<path>\&...]
48 .RS 4
49 This form is to view the changes you made relative to the index (staging area for the next commit)\&. In other words, the differences are what you
50 \fIcould\fR
51 tell Git to further add to the index but you still haven\(cqt\&. You can stage these changes by using
52 \fBgit-add\fR(1)\&.
53 .RE
54 .PP
55 \fIgit diff\fR [<options>] \-\-no\-index [\-\-] <path> <path>
56 .RS 4
57 This form is to compare the given two paths on the filesystem\&. You can omit the
58 \fB\-\-no\-index\fR
59 option when running the command in a working tree controlled by Git and at least one of the paths points outside the working tree, or when running the command outside a working tree controlled by Git\&. This form implies
60 \fB\-\-exit\-code\fR\&.
61 .RE
62 .PP
63 \fIgit diff\fR [<options>] \-\-cached [\-\-merge\-base] [<commit>] [\-\-] [<path>\&...]
64 .RS 4
65 This form is to view the changes you staged for the next commit relative to the named <commit>\&. Typically you would want comparison with the latest commit, so if you do not give <commit>, it defaults to HEAD\&. If HEAD does not exist (e\&.g\&. unborn branches) and <commit> is not given, it shows all staged changes\&. \-\-staged is a synonym of \-\-cached\&.
66 .sp
67 If \-\-merge\-base is given, instead of using <commit>, use the merge base of <commit> and HEAD\&.
68 \fBgit diff \-\-cached \-\-merge\-base A\fR
69 is equivalent to
70 \fBgit diff \-\-cached $(git merge\-base A HEAD)\fR\&.
71 .RE
72 .PP
73 \fIgit diff\fR [<options>] [\-\-merge\-base] <commit> [\-\-] [<path>\&...]
74 .RS 4
75 This form is to view the changes you have in your working tree relative to the named <commit>\&. You can use HEAD to compare it with the latest commit, or a branch name to compare with the tip of a different branch\&.
76 .sp
77 If \-\-merge\-base is given, instead of using <commit>, use the merge base of <commit> and HEAD\&.
78 \fBgit diff \-\-merge\-base A\fR
79 is equivalent to
80 \fBgit diff $(git merge\-base A HEAD)\fR\&.
81 .RE
82 .PP
83 \fIgit diff\fR [<options>] [\-\-merge\-base] <commit> <commit> [\-\-] [<path>\&...]
84 .RS 4
85 This is to view the changes between two arbitrary <commit>\&.
86 .sp
87 If \-\-merge\-base is given, use the merge base of the two commits for the "before" side\&.
88 \fBgit diff \-\-merge\-base A B\fR
89 is equivalent to
90 \fBgit diff $(git merge\-base A B) B\fR\&.
91 .RE
92 .PP
93 \fIgit diff\fR [<options>] <commit> <commit>\&... <commit> [\-\-] [<path>\&...]
94 .RS 4
95 This form is to view the results of a merge commit\&. The first listed <commit> must be the merge itself; the remaining two or more commits should be its parents\&. Convenient ways to produce the desired set of revisions are to use the suffixes
96 \fB^@\fR
97 and
98 \fB^!\fR\&. If A is a merge commit, then
99 \fBgit diff A A^@\fR,
100 \fBgit diff A^!\fR
102 \fBgit show A\fR
103 all give the same combined diff\&.
106 \fIgit diff\fR [<options>] <commit>\&.\&.<commit> [\-\-] [<path>\&...]
107 .RS 4
108 This is synonymous to the earlier form (without the
109 \fB\&.\&.\fR) for viewing the changes between two arbitrary <commit>\&. If <commit> on one side is omitted, it will have the same effect as using HEAD instead\&.
112 \fIgit diff\fR [<options>] <commit>\&.\&.\&.<commit> [\-\-] [<path>\&...]
113 .RS 4
114 This form is to view the changes on the branch containing and up to the second <commit>, starting at a common ancestor of both <commit>\&.
115 \fBgit diff A\&.\&.\&.B\fR
116 is equivalent to
117 \fBgit diff $(git merge\-base A B) B\fR\&. You can omit any one of <commit>, which has the same effect as using HEAD instead\&.
120 Just in case you are doing something exotic, it should be noted that all of the <commit> in the above description, except in the \fB\-\-merge\-base\fR case and in the last two forms that use \fB\&.\&.\fR notations, can be any <tree>\&.
122 For a more complete list of ways to spell <commit>, see "SPECIFYING REVISIONS" section in \fBgitrevisions\fR(7)\&. However, "diff" is about comparing two \fIendpoints\fR, not ranges, and the range notations (\fB<commit>\&.\&.<commit>\fR and \fB<commit>\&.\&.\&.<commit>\fR) do not mean a range as defined in the "SPECIFYING RANGES" section in \fBgitrevisions\fR(7)\&.
124 \fIgit diff\fR [<options>] <blob> <blob>
125 .RS 4
126 This form is to view the differences between the raw contents of two blob objects\&.
128 .SH "OPTIONS"
130 \-p, \-u, \-\-patch
131 .RS 4
132 Generate patch (see section on generating patches)\&. This is the default\&.
135 \-s, \-\-no\-patch
136 .RS 4
137 Suppress diff output\&. Useful for commands like
138 \fBgit show\fR
139 that show the patch by default, or to cancel the effect of
140 \fB\-\-patch\fR\&.
143 \-U<n>, \-\-unified=<n>
144 .RS 4
145 Generate diffs with <n> lines of context instead of the usual three\&. Implies
146 \fB\-\-patch\fR\&.
149 \-\-output=<file>
150 .RS 4
151 Output to a specific file instead of stdout\&.
154 \-\-output\-indicator\-new=<char>, \-\-output\-indicator\-old=<char>, \-\-output\-indicator\-context=<char>
155 .RS 4
156 Specify the character used to indicate new, old or context lines in the generated patch\&. Normally they are
157 \fI+\fR,
158 \fI\-\fR
159 and \(aq \(aq respectively\&.
162 \-\-raw
163 .RS 4
164 Generate the diff in raw format\&.
167 \-\-patch\-with\-raw
168 .RS 4
169 Synonym for
170 \fB\-p \-\-raw\fR\&.
173 \-\-indent\-heuristic
174 .RS 4
175 Enable the heuristic that shifts diff hunk boundaries to make patches easier to read\&. This is the default\&.
178 \-\-no\-indent\-heuristic
179 .RS 4
180 Disable the indent heuristic\&.
183 \-\-minimal
184 .RS 4
185 Spend extra time to make sure the smallest possible diff is produced\&.
188 \-\-patience
189 .RS 4
190 Generate a diff using the "patience diff" algorithm\&.
193 \-\-histogram
194 .RS 4
195 Generate a diff using the "histogram diff" algorithm\&.
198 \-\-anchored=<text>
199 .RS 4
200 Generate a diff using the "anchored diff" algorithm\&.
202 This option may be specified more than once\&.
204 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\&.
207 \-\-diff\-algorithm={patience|minimal|histogram|myers}
208 .RS 4
209 Choose a diff algorithm\&. The variants are as follows:
211 \fBdefault\fR, \fBmyers\fR
212 .RS 4
213 The basic greedy diff algorithm\&. Currently, this is the default\&.
216 \fBminimal\fR
217 .RS 4
218 Spend extra time to make sure the smallest possible diff is produced\&.
221 \fBpatience\fR
222 .RS 4
223 Use "patience diff" algorithm when generating patches\&.
226 \fBhistogram\fR
227 .RS 4
228 This algorithm extends the patience algorithm to "support low\-occurrence common elements"\&.
231 For instance, if you configured the
232 \fBdiff\&.algorithm\fR
233 variable to a non\-default value and want to use the default one, then you have to use
234 \fB\-\-diff\-algorithm=default\fR
235 option\&.
238 \-\-stat[=<width>[,<name\-width>[,<count>]]]
239 .RS 4
240 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
241 \fB<width>\fR\&. The width of the filename part can be limited by giving another width
242 \fB<name\-width>\fR
243 after a comma\&. The width of the graph part can be limited by using
244 \fB\-\-stat\-graph\-width=<width>\fR
245 (affects all commands generating a stat graph) or by setting
246 \fBdiff\&.statGraphWidth=<width>\fR
247 (does not affect
248 \fBgit format\-patch\fR)\&. By giving a third parameter
249 \fB<count>\fR, you can limit the output to the first
250 \fB<count>\fR
251 lines, followed by
252 \fB\&.\&.\&.\fR
253 if there are more\&.
255 These parameters can also be set individually with
256 \fB\-\-stat\-width=<width>\fR,
257 \fB\-\-stat\-name\-width=<name\-width>\fR
259 \fB\-\-stat\-count=<count>\fR\&.
262 \-\-compact\-summary
263 .RS 4
264 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
265 \fB\-\-stat\fR\&.
268 \-\-numstat
269 .RS 4
270 Similar to
271 \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
272 \fB\-\fR
273 instead of saying
274 \fB0 0\fR\&.
277 \-\-shortstat
278 .RS 4
279 Output only the last line of the
280 \fB\-\-stat\fR
281 format containing total number of modified files, as well as number of added and deleted lines\&.
284 \-X[<param1,param2,\&...>], \-\-dirstat[=<param1,param2,\&...>]
285 .RS 4
286 Output the distribution of relative amount of changes for each sub\-directory\&. The behavior of
287 \fB\-\-dirstat\fR
288 can be customized by passing it a comma separated list of parameters\&. The defaults are controlled by the
289 \fBdiff\&.dirstat\fR
290 configuration variable (see
291 \fBgit-config\fR(1))\&. The following parameters are available:
293 \fBchanges\fR
294 .RS 4
295 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\&.
298 \fBlines\fR
299 .RS 4
300 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
301 \fB\-\-dirstat\fR
302 behavior than the
303 \fBchanges\fR
304 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
305 \fB\-\-*stat\fR
306 options\&.
309 \fBfiles\fR
310 .RS 4
311 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
312 \fB\-\-dirstat\fR
313 behavior, since it does not have to look at the file contents at all\&.
316 \fBcumulative\fR
317 .RS 4
318 Count changes in a child directory for the parent directory as well\&. Note that when using
319 \fBcumulative\fR, the sum of the percentages reported may exceed 100%\&. The default (non\-cumulative) behavior can be specified with the
320 \fBnoncumulative\fR
321 parameter\&.
324 <limit>
325 .RS 4
326 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\&.
329 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:
330 \fB\-\-dirstat=files,10,cumulative\fR\&.
333 \-\-cumulative
334 .RS 4
335 Synonym for \-\-dirstat=cumulative
338 \-\-dirstat\-by\-file[=<param1,param2>\&...]
339 .RS 4
340 Synonym for \-\-dirstat=files,param1,param2\&...
343 \-\-summary
344 .RS 4
345 Output a condensed summary of extended header information such as creations, renames and mode changes\&.
348 \-\-patch\-with\-stat
349 .RS 4
350 Synonym for
351 \fB\-p \-\-stat\fR\&.
355 .RS 4
356 When
357 \fB\-\-raw\fR,
358 \fB\-\-numstat\fR,
359 \fB\-\-name\-only\fR
361 \fB\-\-name\-status\fR
362 has been given, do not munge pathnames and use NULs as output field terminators\&.
364 Without this option, pathnames with "unusual" characters are quoted as explained for the configuration variable
365 \fBcore\&.quotePath\fR
366 (see
367 \fBgit-config\fR(1))\&.
370 \-\-name\-only
371 .RS 4
372 Show only names of changed files\&. The file names are often encoded in UTF\-8\&. For more information see the discussion about encoding in the
373 \fBgit-log\fR(1)
374 manual page\&.
377 \-\-name\-status
378 .RS 4
379 Show only names and status of changed files\&. See the description of the
380 \fB\-\-diff\-filter\fR
381 option on what the status letters mean\&. Just like
382 \fB\-\-name\-only\fR
383 the file names are often encoded in UTF\-8\&.
386 \-\-submodule[=<format>]
387 .RS 4
388 Specify how differences in submodules are shown\&. When specifying
389 \fB\-\-submodule=short\fR
391 \fIshort\fR
392 format is used\&. This format just shows the names of the commits at the beginning and end of the range\&. When
393 \fB\-\-submodule\fR
395 \fB\-\-submodule=log\fR
396 is specified, the
397 \fIlog\fR
398 format is used\&. This format lists the commits in the range like
399 \fBgit-submodule\fR(1)
400 \fBsummary\fR
401 does\&. When
402 \fB\-\-submodule=diff\fR
403 is specified, the
404 \fIdiff\fR
405 format is used\&. This format shows an inline diff of the changes in the submodule contents between the commit range\&. Defaults to
406 \fBdiff\&.submodule\fR
407 or the
408 \fIshort\fR
409 format if the config option is unset\&.
412 \-\-color[=<when>]
413 .RS 4
414 Show colored diff\&.
415 \fB\-\-color\fR
416 (i\&.e\&. without
417 \fI=<when>\fR) is the same as
418 \fB\-\-color=always\fR\&.
419 \fI<when>\fR
420 can be one of
421 \fBalways\fR,
422 \fBnever\fR, or
423 \fBauto\fR\&. It can be changed by the
424 \fBcolor\&.ui\fR
426 \fBcolor\&.diff\fR
427 configuration settings\&.
430 \-\-no\-color
431 .RS 4
432 Turn off colored diff\&. This can be used to override configuration settings\&. It is the same as
433 \fB\-\-color=never\fR\&.
436 \-\-color\-moved[=<mode>]
437 .RS 4
438 Moved lines of code are colored differently\&. It can be changed by the
439 \fBdiff\&.colorMoved\fR
440 configuration setting\&. The <mode> defaults to
441 \fIno\fR
442 if the option is not given and to
443 \fIzebra\fR
444 if the option with no mode is given\&. The mode must be one of:
447 .RS 4
448 Moved lines are not highlighted\&.
451 default
452 .RS 4
453 Is a synonym for
454 \fBzebra\fR\&. This may change to a more sensible mode in the future\&.
457 plain
458 .RS 4
459 Any line that is added in one location and was removed in another location will be colored with
460 \fIcolor\&.diff\&.newMoved\fR\&. Similarly
461 \fIcolor\&.diff\&.oldMoved\fR
462 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\&.
465 blocks
466 .RS 4
467 Blocks of moved text of at least 20 alphanumeric characters are detected greedily\&. The detected blocks are painted using either the
468 \fIcolor\&.diff\&.{old,new}Moved\fR
469 color\&. Adjacent blocks cannot be told apart\&.
472 zebra
473 .RS 4
474 Blocks of moved text are detected as in
475 \fIblocks\fR
476 mode\&. The blocks are painted using either the
477 \fIcolor\&.diff\&.{old,new}Moved\fR
478 color or
479 \fIcolor\&.diff\&.{old,new}MovedAlternative\fR\&. The change between the two colors indicates that a new block was detected\&.
482 dimmed\-zebra
483 .RS 4
484 Similar to
485 \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\&.
486 \fBdimmed_zebra\fR
487 is a deprecated synonym\&.
491 \-\-no\-color\-moved
492 .RS 4
493 Turn off move detection\&. This can be used to override configuration settings\&. It is the same as
494 \fB\-\-color\-moved=no\fR\&.
497 \-\-color\-moved\-ws=<modes>
498 .RS 4
499 This configures how whitespace is ignored when performing the move detection for
500 \fB\-\-color\-moved\fR\&. It can be set by the
501 \fBdiff\&.colorMovedWS\fR
502 configuration setting\&. These modes can be given as a comma separated list:
505 .RS 4
506 Do not ignore whitespace when performing move detection\&.
509 ignore\-space\-at\-eol
510 .RS 4
511 Ignore changes in whitespace at EOL\&.
514 ignore\-space\-change
515 .RS 4
516 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\&.
519 ignore\-all\-space
520 .RS 4
521 Ignore whitespace when comparing lines\&. This ignores differences even if one line has whitespace where the other line has none\&.
524 allow\-indentation\-change
525 .RS 4
526 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\&.
530 \-\-no\-color\-moved\-ws
531 .RS 4
532 Do not ignore whitespace when performing move detection\&. This can be used to override configuration settings\&. It is the same as
533 \fB\-\-color\-moved\-ws=no\fR\&.
536 \-\-word\-diff[=<mode>]
537 .RS 4
538 Show a word diff, using the <mode> to delimit changed words\&. By default, words are delimited by whitespace; see
539 \fB\-\-word\-diff\-regex\fR
540 below\&. The <mode> defaults to
541 \fIplain\fR, and must be one of:
543 color
544 .RS 4
545 Highlight changed words using only colors\&. Implies
546 \fB\-\-color\fR\&.
549 plain
550 .RS 4
551 Show words as
552 \fB[\-removed\-]\fR
554 \fB{+added+}\fR\&. Makes no attempts to escape the delimiters if they appear in the input, so the output may be ambiguous\&.
557 porcelain
558 .RS 4
559 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
560 \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
561 \fB~\fR
562 on a line of its own\&.
565 none
566 .RS 4
567 Disable word diff again\&.
570 Note that despite the name of the first mode, color is used to highlight the changed parts in all modes if enabled\&.
573 \-\-word\-diff\-regex=<regex>
574 .RS 4
575 Use <regex> to decide what a word is, instead of considering runs of non\-whitespace to be a word\&. Also implies
576 \fB\-\-word\-diff\fR
577 unless it was already enabled\&.
579 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
580 \fB|[^[:space:]]\fR
581 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\&.
583 For example,
584 \fB\-\-word\-diff\-regex=\&.\fR
585 will treat each character as a word and, correspondingly, show differences character by character\&.
587 The regex can also be set via a diff driver or configuration option, see
588 \fBgitattributes\fR(5)
590 \fBgit-config\fR(1)\&. Giving it explicitly overrides any diff driver or configuration setting\&. Diff drivers override configuration settings\&.
593 \-\-color\-words[=<regex>]
594 .RS 4
595 Equivalent to
596 \fB\-\-word\-diff=color\fR
597 plus (if a regex was specified)
598 \fB\-\-word\-diff\-regex=<regex>\fR\&.
601 \-\-no\-renames
602 .RS 4
603 Turn off rename detection, even when the configuration file gives the default to do so\&.
606 \-\-[no\-]rename\-empty
607 .RS 4
608 Whether to use empty blobs as rename source\&.
611 \-\-check
612 .RS 4
613 Warn if changes introduce conflict markers or whitespace errors\&. What are considered whitespace errors is controlled by
614 \fBcore\&.whitespace\fR
615 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\&.
618 \-\-ws\-error\-highlight=<kind>
619 .RS 4
620 Highlight whitespace errors in the
621 \fBcontext\fR,
622 \fBold\fR
624 \fBnew\fR
625 lines of the diff\&. Multiple values are separated by comma,
626 \fBnone\fR
627 resets previous values,
628 \fBdefault\fR
629 reset the list to
630 \fBnew\fR
632 \fBall\fR
633 is a shorthand for
634 \fBold,new,context\fR\&. When this option is not given, and the configuration variable
635 \fBdiff\&.wsErrorHighlight\fR
636 is not set, only whitespace errors in
637 \fBnew\fR
638 lines are highlighted\&. The whitespace errors are colored with
639 \fBcolor\&.diff\&.whitespace\fR\&.
642 \-\-full\-index
643 .RS 4
644 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\&.
647 \-\-binary
648 .RS 4
649 In addition to
650 \fB\-\-full\-index\fR, output a binary diff that can be applied with
651 \fBgit\-apply\fR\&. Implies
652 \fB\-\-patch\fR\&.
655 \-\-abbrev[=<n>]
656 .RS 4
657 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
658 \fI<n>\fR
659 hexdigits long that uniquely refers the object\&. In diff\-patch output format,
660 \fB\-\-full\-index\fR
661 takes higher precedence, i\&.e\&. if
662 \fB\-\-full\-index\fR
663 is specified, full blob names will be shown regardless of
664 \fB\-\-abbrev\fR\&. Non default number of digits can be specified with
665 \fB\-\-abbrev=<n>\fR\&.
668 \-B[<n>][/<m>], \-\-break\-rewrites[=[<n>][/<m>]]
669 .RS 4
670 Break complete rewrite changes into pairs of delete and create\&. This serves two purposes:
672 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
673 \fBm\fR
674 controls this aspect of the \-B option (defaults to 60%)\&.
675 \fB\-B/70%\fR
676 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)\&.
678 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
679 \fBn\fR
680 controls this aspect of the \-B option (defaults to 50%)\&.
681 \fB\-B20%\fR
682 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\&.
685 \-M[<n>], \-\-find\-renames[=<n>]
686 .RS 4
687 Detect renames\&. If
688 \fBn\fR
689 is specified, it is a threshold on the similarity index (i\&.e\&. amount of addition/deletions compared to the file\(cqs size)\&. For example,
690 \fB\-M90%\fR
691 means Git should consider a delete/add pair to be a rename if more than 90% of the file hasn\(cqt changed\&. Without a
692 \fB%\fR
693 sign, the number is to be read as a fraction, with a decimal point before it\&. I\&.e\&.,
694 \fB\-M5\fR
695 becomes 0\&.5, and is thus the same as
696 \fB\-M50%\fR\&. Similarly,
697 \fB\-M05\fR
698 is the same as
699 \fB\-M5%\fR\&. To limit detection to exact renames, use
700 \fB\-M100%\fR\&. The default similarity index is 50%\&.
703 \-C[<n>], \-\-find\-copies[=<n>]
704 .RS 4
705 Detect copies as well as renames\&. See also
706 \fB\-\-find\-copies\-harder\fR\&. If
707 \fBn\fR
708 is specified, it has the same meaning as for
709 \fB\-M<n>\fR\&.
712 \-\-find\-copies\-harder
713 .RS 4
714 For performance reasons, by default,
715 \fB\-C\fR
716 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
717 \fB\-C\fR
718 option has the same effect\&.
721 \-D, \-\-irreversible\-delete
722 .RS 4
723 Omit the preimage for deletes, i\&.e\&. print only the header but not the diff between the preimage and
724 \fB/dev/null\fR\&. The resulting patch is not meant to be applied with
725 \fBpatch\fR
727 \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\&.
729 When used together with
730 \fB\-B\fR, omit also the preimage in the deletion part of a delete/create pair\&.
733 \-l<num>
734 .RS 4
736 \fB\-M\fR
738 \fB\-C\fR
739 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\&.
742 \-\-diff\-filter=[(A|C|D|M|R|T|U|X|B)\&...[*]]
743 .RS 4
744 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
745 \fB*\fR
746 (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\&.
748 Also, these upper\-case letters can be downcased to exclude\&. E\&.g\&.
749 \fB\-\-diff\-filter=ad\fR
750 excludes added and deleted paths\&.
752 Note that not all diffs can feature all types\&. For instance, copied and renamed entries cannot appear if detection for those types is disabled\&.
755 \-S<string>
756 .RS 4
757 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\&.
759 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
760 \fB\-S\fR, and keep going until you get the very first version of the block\&.
762 Binary files are searched as well\&.
765 \-G<regex>
766 .RS 4
767 Look for differences whose patch text contains added/removed lines that match <regex>\&.
769 To illustrate the difference between
770 \fB\-S<regex> \-\-pickaxe\-regex\fR
772 \fB\-G<regex>\fR, consider a commit with the following diff in the same file:
774 .if n \{\
775 .RS 4
778 +    return frotz(nitfol, two\->ptr, 1, 0);
779 \&.\&.\&.
780 \-    hit = frotz(nitfol, mf2\&.ptr, 1, 0);
782 .if n \{\
786 While
787 \fBgit log \-G"frotz\e(nitfol"\fR
788 will show this commit,
789 \fBgit log \-S"frotz\e(nitfol" \-\-pickaxe\-regex\fR
790 will not (because the number of occurrences of that string did not change)\&.
792 Unless
793 \fB\-\-text\fR
794 is supplied patches of binary files without a textconv filter will be ignored\&.
796 See the
797 \fIpickaxe\fR
798 entry in
799 \fBgitdiffcore\fR(7)
800 for more information\&.
803 \-\-find\-object=<object\-id>
804 .RS 4
805 Look for differences that change the number of occurrences of the specified object\&. Similar to
806 \fB\-S\fR, just the argument is different in that it doesn\(cqt search for a specific string but for a specific object id\&.
808 The object can be a blob or a submodule commit\&. It implies the
809 \fB\-t\fR
810 option in
811 \fBgit\-log\fR
812 to also find trees\&.
815 \-\-pickaxe\-all
816 .RS 4
817 When
818 \fB\-S\fR
820 \fB\-G\fR
821 finds a change, show all the changes in that changeset, not just the files that contain the change in <string>\&.
824 \-\-pickaxe\-regex
825 .RS 4
826 Treat the <string> given to
827 \fB\-S\fR
828 as an extended POSIX regular expression to match\&.
831 \-O<orderfile>
832 .RS 4
833 Control the order in which files appear in the output\&. This overrides the
834 \fBdiff\&.orderFile\fR
835 configuration variable (see
836 \fBgit-config\fR(1))\&. To cancel
837 \fBdiff\&.orderFile\fR, use
838 \fB\-O/dev/null\fR\&.
840 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\&.
842 <orderfile> is parsed as follows:
844 .RS 4
845 .ie n \{\
846 \h'-04'\(bu\h'+03'\c
848 .el \{\
849 .sp -1
850 .IP \(bu 2.3
852 Blank lines are ignored, so they can be used as separators for readability\&.
855 .RS 4
856 .ie n \{\
857 \h'-04'\(bu\h'+03'\c
859 .el \{\
860 .sp -1
861 .IP \(bu 2.3
863 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\&.
866 .RS 4
867 .ie n \{\
868 \h'-04'\(bu\h'+03'\c
870 .el \{\
871 .sp -1
872 .IP \(bu 2.3
874 Each other line contains a single pattern\&.
877 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"\&.
880 \-\-skip\-to=<file>, \-\-rotate\-to=<file>
881 .RS 4
882 Discard the files before the named <file> from the output (i\&.e\&.
883 \fIskip to\fR), or move them to the end of the output (i\&.e\&.
884 \fIrotate to\fR)\&. These were invented primarily for use of the
885 \fBgit difftool\fR
886 command, and may not be very useful otherwise\&.
890 .RS 4
891 Swap two inputs; that is, show differences from index or on\-disk file to tree contents\&.
894 \-\-relative[=<path>], \-\-no\-relative
895 .RS 4
896 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\&.
897 \fB\-\-no\-relative\fR
898 can be used to countermand both
899 \fBdiff\&.relative\fR
900 config option and previous
901 \fB\-\-relative\fR\&.
904 \-a, \-\-text
905 .RS 4
906 Treat all files as text\&.
909 \-\-ignore\-cr\-at\-eol
910 .RS 4
911 Ignore carriage\-return at the end of line when doing a comparison\&.
914 \-\-ignore\-space\-at\-eol
915 .RS 4
916 Ignore changes in whitespace at EOL\&.
919 \-b, \-\-ignore\-space\-change
920 .RS 4
921 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\&.
924 \-w, \-\-ignore\-all\-space
925 .RS 4
926 Ignore whitespace when comparing lines\&. This ignores differences even if one line has whitespace where the other line has none\&.
929 \-\-ignore\-blank\-lines
930 .RS 4
931 Ignore changes whose lines are all blank\&.
934 \-I<regex>, \-\-ignore\-matching\-lines=<regex>
935 .RS 4
936 Ignore changes whose all lines match <regex>\&. This option may be specified more than once\&.
939 \-\-inter\-hunk\-context=<lines>
940 .RS 4
941 Show the context between diff hunks, up to the specified number of lines, thereby fusing hunks that are close to each other\&. Defaults to
942 \fBdiff\&.interHunkContext\fR
943 or 0 if the config option is unset\&.
946 \-W, \-\-function\-context
947 .RS 4
948 Show whole function as context lines for each change\&. The function names are determined in the same way as
949 \fBgit diff\fR
950 works out patch hunk headers (see
951 \fIDefining a custom hunk\-header\fR
953 \fBgitattributes\fR(5))\&.
956 \-\-exit\-code
957 .RS 4
958 Make the program exit with codes similar to diff(1)\&. That is, it exits with 1 if there were differences and 0 means no differences\&.
961 \-\-quiet
962 .RS 4
963 Disable all output of the program\&. Implies
964 \fB\-\-exit\-code\fR\&.
967 \-\-ext\-diff
968 .RS 4
969 Allow an external diff helper to be executed\&. If you set an external diff driver with
970 \fBgitattributes\fR(5), you need to use this option with
971 \fBgit-log\fR(1)
972 and friends\&.
975 \-\-no\-ext\-diff
976 .RS 4
977 Disallow external diff drivers\&.
980 \-\-textconv, \-\-no\-textconv
981 .RS 4
982 Allow (or disallow) external text conversion filters to be run when comparing binary files\&. See
983 \fBgitattributes\fR(5)
984 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
985 \fBgit-diff\fR(1)
987 \fBgit-log\fR(1), but not for
988 \fBgit-format-patch\fR(1)
989 or diff plumbing commands\&.
992 \-\-ignore\-submodules[=<when>]
993 .RS 4
994 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
995 \fIignore\fR
996 option in
997 \fBgit-config\fR(1)
999 \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\&.
1002 \-\-src\-prefix=<prefix>
1003 .RS 4
1004 Show the given source prefix instead of "a/"\&.
1007 \-\-dst\-prefix=<prefix>
1008 .RS 4
1009 Show the given destination prefix instead of "b/"\&.
1012 \-\-no\-prefix
1013 .RS 4
1014 Do not show any source or destination prefix\&.
1017 \-\-line\-prefix=<prefix>
1018 .RS 4
1019 Prepend an additional prefix to every line of output\&.
1022 \-\-ita\-invisible\-in\-index
1023 .RS 4
1024 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
1025 \fB\-\-ita\-visible\-in\-index\fR\&. Both options are experimental and could be removed in future\&.
1028 For more detailed explanation on these common options, see also \fBgitdiffcore\fR(7)\&.
1030 \-1 \-\-base, \-2 \-\-ours, \-3 \-\-theirs
1031 .RS 4
1032 Compare the working tree with the "base" version (stage #1), "our branch" (stage #2) or "their branch" (stage #3)\&. The index contains these stages only for unmerged entries i\&.e\&. while resolving conflicts\&. See
1033 \fBgit-read-tree\fR(1)
1034 section "3\-Way Merge" for detailed information\&.
1038 .RS 4
1039 Omit diff output for unmerged entries and just show "Unmerged"\&. Can be used only when comparing the working tree with the index\&.
1042 <path>\&...
1043 .RS 4
1044 The <paths> parameters, when given, are used to limit the diff to the named paths (you can give directory names and get diff for all files under them)\&.
1046 .SH "RAW OUTPUT FORMAT"
1048 The raw output format from "git\-diff\-index", "git\-diff\-tree", "git\-diff\-files" and "git diff \-\-raw" are very similar\&.
1050 These commands all compare two sets of things; what is compared differs:
1052 git\-diff\-index <tree\-ish>
1053 .RS 4
1054 compares the <tree\-ish> and the files on the filesystem\&.
1057 git\-diff\-index \-\-cached <tree\-ish>
1058 .RS 4
1059 compares the <tree\-ish> and the index\&.
1062 git\-diff\-tree [\-r] <tree\-ish\-1> <tree\-ish\-2> [<pattern>\&...]
1063 .RS 4
1064 compares the trees named by the two arguments\&.
1067 git\-diff\-files [<pattern>\&...]
1068 .RS 4
1069 compares the index and the files on the filesystem\&.
1072 The "git\-diff\-tree" command begins its output by printing the hash of what is being compared\&. After that, all the commands print one output line per changed file\&.
1074 An output line is formatted this way:
1076 .if n \{\
1077 .RS 4
1080 in\-place edit  :100644 100644 bcd1234 0123456 M file0
1081 copy\-edit      :100644 100644 abcd123 1234567 C68 file1 file2
1082 rename\-edit    :100644 100644 abcd123 1234567 R86 file1 file3
1083 create         :000000 100644 0000000 1234567 A file4
1084 delete         :100644 000000 1234567 0000000 D file5
1085 unmerged       :000000 000000 0000000 0000000 U file6
1087 .if n \{\
1092 That is, from the left to the right:
1094 .RS 4
1095 .ie n \{\
1096 \h'-04' 1.\h'+01'\c
1098 .el \{\
1099 .sp -1
1100 .IP "  1." 4.2
1102 a colon\&.
1105 .RS 4
1106 .ie n \{\
1107 \h'-04' 2.\h'+01'\c
1109 .el \{\
1110 .sp -1
1111 .IP "  2." 4.2
1113 mode for "src"; 000000 if creation or unmerged\&.
1116 .RS 4
1117 .ie n \{\
1118 \h'-04' 3.\h'+01'\c
1120 .el \{\
1121 .sp -1
1122 .IP "  3." 4.2
1124 a space\&.
1127 .RS 4
1128 .ie n \{\
1129 \h'-04' 4.\h'+01'\c
1131 .el \{\
1132 .sp -1
1133 .IP "  4." 4.2
1135 mode for "dst"; 000000 if deletion or unmerged\&.
1138 .RS 4
1139 .ie n \{\
1140 \h'-04' 5.\h'+01'\c
1142 .el \{\
1143 .sp -1
1144 .IP "  5." 4.2
1146 a space\&.
1149 .RS 4
1150 .ie n \{\
1151 \h'-04' 6.\h'+01'\c
1153 .el \{\
1154 .sp -1
1155 .IP "  6." 4.2
1157 sha1 for "src"; 0{40} if creation or unmerged\&.
1160 .RS 4
1161 .ie n \{\
1162 \h'-04' 7.\h'+01'\c
1164 .el \{\
1165 .sp -1
1166 .IP "  7." 4.2
1168 a space\&.
1171 .RS 4
1172 .ie n \{\
1173 \h'-04' 8.\h'+01'\c
1175 .el \{\
1176 .sp -1
1177 .IP "  8." 4.2
1179 sha1 for "dst"; 0{40} if deletion, unmerged or "work tree out of sync with the index"\&.
1182 .RS 4
1183 .ie n \{\
1184 \h'-04' 9.\h'+01'\c
1186 .el \{\
1187 .sp -1
1188 .IP "  9." 4.2
1190 a space\&.
1193 .RS 4
1194 .ie n \{\
1195 \h'-04'10.\h'+01'\c
1197 .el \{\
1198 .sp -1
1199 .IP "10." 4.2
1201 status, followed by optional "score" number\&.
1204 .RS 4
1205 .ie n \{\
1206 \h'-04'11.\h'+01'\c
1208 .el \{\
1209 .sp -1
1210 .IP "11." 4.2
1212 a tab or a NUL when
1213 \fB\-z\fR
1214 option is used\&.
1217 .RS 4
1218 .ie n \{\
1219 \h'-04'12.\h'+01'\c
1221 .el \{\
1222 .sp -1
1223 .IP "12." 4.2
1225 path for "src"
1228 .RS 4
1229 .ie n \{\
1230 \h'-04'13.\h'+01'\c
1232 .el \{\
1233 .sp -1
1234 .IP "13." 4.2
1236 a tab or a NUL when
1237 \fB\-z\fR
1238 option is used; only exists for C or R\&.
1241 .RS 4
1242 .ie n \{\
1243 \h'-04'14.\h'+01'\c
1245 .el \{\
1246 .sp -1
1247 .IP "14." 4.2
1249 path for "dst"; only exists for C or R\&.
1252 .RS 4
1253 .ie n \{\
1254 \h'-04'15.\h'+01'\c
1256 .el \{\
1257 .sp -1
1258 .IP "15." 4.2
1260 an LF or a NUL when
1261 \fB\-z\fR
1262 option is used, to terminate the record\&.
1265 Possible status letters are:
1267 .RS 4
1268 .ie n \{\
1269 \h'-04'\(bu\h'+03'\c
1271 .el \{\
1272 .sp -1
1273 .IP \(bu 2.3
1275 A: addition of a file
1278 .RS 4
1279 .ie n \{\
1280 \h'-04'\(bu\h'+03'\c
1282 .el \{\
1283 .sp -1
1284 .IP \(bu 2.3
1286 C: copy of a file into a new one
1289 .RS 4
1290 .ie n \{\
1291 \h'-04'\(bu\h'+03'\c
1293 .el \{\
1294 .sp -1
1295 .IP \(bu 2.3
1297 D: deletion of a file
1300 .RS 4
1301 .ie n \{\
1302 \h'-04'\(bu\h'+03'\c
1304 .el \{\
1305 .sp -1
1306 .IP \(bu 2.3
1308 M: modification of the contents or mode of a file
1311 .RS 4
1312 .ie n \{\
1313 \h'-04'\(bu\h'+03'\c
1315 .el \{\
1316 .sp -1
1317 .IP \(bu 2.3
1319 R: renaming of a file
1322 .RS 4
1323 .ie n \{\
1324 \h'-04'\(bu\h'+03'\c
1326 .el \{\
1327 .sp -1
1328 .IP \(bu 2.3
1330 T: change in the type of the file (regular file, symbolic link or submodule)
1333 .RS 4
1334 .ie n \{\
1335 \h'-04'\(bu\h'+03'\c
1337 .el \{\
1338 .sp -1
1339 .IP \(bu 2.3
1341 U: file is unmerged (you must complete the merge before it can be committed)
1344 .RS 4
1345 .ie n \{\
1346 \h'-04'\(bu\h'+03'\c
1348 .el \{\
1349 .sp -1
1350 .IP \(bu 2.3
1352 X: "unknown" change type (most probably a bug, please report it)
1355 Status letters C and R are always followed by a score (denoting the percentage of similarity between the source and target of the move or copy)\&. Status letter M may be followed by a score (denoting the percentage of dissimilarity) for file rewrites\&.
1357 The sha1 for "dst" is shown as all 0\(cqs if a file on the filesystem is out of sync with the index\&.
1359 Example:
1361 .if n \{\
1362 .RS 4
1365 :100644 100644 5be4a4a 0000000 M file\&.c
1367 .if n \{\
1372 Without the \fB\-z\fR option, pathnames with "unusual" characters are quoted as explained for the configuration variable \fBcore\&.quotePath\fR (see \fBgit-config\fR(1))\&. Using \fB\-z\fR the filename is output verbatim and the line is terminated by a NUL byte\&.
1373 .SH "DIFF FORMAT FOR MERGES"
1375 "git\-diff\-tree", "git\-diff\-files" and "git\-diff \-\-raw" can take \fB\-c\fR or \fB\-\-cc\fR option to generate diff output also for merge commits\&. The output differs from the format described above in the following way:
1377 .RS 4
1378 .ie n \{\
1379 \h'-04' 1.\h'+01'\c
1381 .el \{\
1382 .sp -1
1383 .IP "  1." 4.2
1385 there is a colon for each parent
1388 .RS 4
1389 .ie n \{\
1390 \h'-04' 2.\h'+01'\c
1392 .el \{\
1393 .sp -1
1394 .IP "  2." 4.2
1396 there are more "src" modes and "src" sha1
1399 .RS 4
1400 .ie n \{\
1401 \h'-04' 3.\h'+01'\c
1403 .el \{\
1404 .sp -1
1405 .IP "  3." 4.2
1407 status is concatenated status characters for each parent
1410 .RS 4
1411 .ie n \{\
1412 \h'-04' 4.\h'+01'\c
1414 .el \{\
1415 .sp -1
1416 .IP "  4." 4.2
1418 no optional "score" number
1421 .RS 4
1422 .ie n \{\
1423 \h'-04' 5.\h'+01'\c
1425 .el \{\
1426 .sp -1
1427 .IP "  5." 4.2
1429 tab\-separated pathname(s) of the file
1432 For \fB\-c\fR and \fB\-\-cc\fR, only the destination or final path is shown even if the file was renamed on any side of history\&. With \fB\-\-combined\-all\-paths\fR, the name of the path in each parent is shown followed by the name of the path in the merge commit\&.
1434 Examples for \fB\-c\fR and \fB\-\-cc\fR without \fB\-\-combined\-all\-paths\fR:
1436 .if n \{\
1437 .RS 4
1440 ::100644 100644 100644 fabadb8 cc95eb0 4866510 MM       desc\&.c
1441 ::100755 100755 100755 52b7a2d 6d1ac04 d2ac7d7 RM       bar\&.sh
1442 ::100644 100644 100644 e07d6c5 9042e82 ee91881 RR       phooey\&.c
1444 .if n \{\
1449 Examples when \fB\-\-combined\-all\-paths\fR added to either \fB\-c\fR or \fB\-\-cc\fR:
1451 .if n \{\
1452 .RS 4
1455 ::100644 100644 100644 fabadb8 cc95eb0 4866510 MM       desc\&.c  desc\&.c  desc\&.c
1456 ::100755 100755 100755 52b7a2d 6d1ac04 d2ac7d7 RM       foo\&.sh  bar\&.sh  bar\&.sh
1457 ::100644 100644 100644 e07d6c5 9042e82 ee91881 RR       fooey\&.c fuey\&.c  phooey\&.c
1459 .if n \{\
1464 Note that \fIcombined diff\fR lists only files which were modified from all parents\&.
1465 .SH "GENERATING PATCH TEXT WITH \-P"
1467 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))\&.
1469 What the \-p option produces is slightly different from the traditional diff format:
1471 .RS 4
1472 .ie n \{\
1473 \h'-04' 1.\h'+01'\c
1475 .el \{\
1476 .sp -1
1477 .IP "  1." 4.2
1479 It is preceded with a "git diff" header that looks like this:
1481 .if n \{\
1482 .RS 4
1485 diff \-\-git a/file1 b/file2
1487 .if n \{\
1492 \fBa/\fR
1494 \fBb/\fR
1495 filenames are the same unless rename/copy is involved\&. Especially, even for a creation or a deletion,
1496 \fB/dev/null\fR
1498 \fInot\fR
1499 used in place of the
1500 \fBa/\fR
1502 \fBb/\fR
1503 filenames\&.
1505 When rename/copy is involved,
1506 \fBfile1\fR
1508 \fBfile2\fR
1509 show the name of the source file of the rename/copy and the name of the file that rename/copy produces, respectively\&.
1512 .RS 4
1513 .ie n \{\
1514 \h'-04' 2.\h'+01'\c
1516 .el \{\
1517 .sp -1
1518 .IP "  2." 4.2
1520 It is followed by one or more extended header lines:
1522 .if n \{\
1523 .RS 4
1526 old mode <mode>
1527 new mode <mode>
1528 deleted file mode <mode>
1529 new file mode <mode>
1530 copy from <path>
1531 copy to <path>
1532 rename from <path>
1533 rename to <path>
1534 similarity index <number>
1535 dissimilarity index <number>
1536 index <hash>\&.\&.<hash> <mode>
1538 .if n \{\
1542 File modes are printed as 6\-digit octal numbers including the file type and file permission bits\&.
1544 Path names in extended headers do not include the
1545 \fBa/\fR
1547 \fBb/\fR
1548 prefixes\&.
1550 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\&.
1552 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\&.
1555 .RS 4
1556 .ie n \{\
1557 \h'-04' 3.\h'+01'\c
1559 .el \{\
1560 .sp -1
1561 .IP "  3." 4.2
1563 Pathnames with "unusual" characters are quoted as explained for the configuration variable
1564 \fBcore\&.quotePath\fR
1565 (see
1566 \fBgit-config\fR(1))\&.
1569 .RS 4
1570 .ie n \{\
1571 \h'-04' 4.\h'+01'\c
1573 .el \{\
1574 .sp -1
1575 .IP "  4." 4.2
1577 All the
1578 \fBfile1\fR
1579 files in the output refer to files before the commit, and all the
1580 \fBfile2\fR
1581 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:
1583 .if n \{\
1584 .RS 4
1587 diff \-\-git a/a b/b
1588 rename from a
1589 rename to b
1590 diff \-\-git a/b b/a
1591 rename from b
1592 rename to a
1594 .if n \{\
1599 .RS 4
1600 .ie n \{\
1601 \h'-04' 5.\h'+01'\c
1603 .el \{\
1604 .sp -1
1605 .IP "  5." 4.2
1607 Hunk headers mention the name of the function to which the hunk applies\&. See "Defining a custom hunk\-header" in
1608 \fBgitattributes\fR(5)
1609 for details of how to tailor to this to specific languages\&.
1611 .SH "COMBINED DIFF FORMAT"
1613 Any diff\-generating command can take the \fB\-c\fR or \fB\-\-cc\fR option to produce a \fIcombined diff\fR when showing a merge\&. This is the default format when showing merges with \fBgit-diff\fR(1) or \fBgit-show\fR(1)\&. Note also that you can give suitable \fB\-\-diff\-merges\fR option to any of these commands to force generation of diffs in specific format\&.
1615 A "combined diff" format looks like this:
1617 .if n \{\
1618 .RS 4
1621 diff \-\-combined describe\&.c
1622 index fabadb8,cc95eb0\&.\&.4866510
1623 \-\-\- a/describe\&.c
1624 +++ b/describe\&.c
1625 @@@ \-98,20 \-98,12 +98,20 @@@
1626         return (a_date > b_date) ? \-1 : (a_date == b_date) ? 0 : 1;
1627   }
1629 \- static void describe(char *arg)
1630  \-static void describe(struct commit *cmit, int last_one)
1631 ++static void describe(char *arg, int last_one)
1632   {
1633  +      unsigned char sha1[20];
1634  +      struct commit *cmit;
1635         struct commit_list *list;
1636         static int initialized = 0;
1637         struct commit_name *n;
1639  +      if (get_sha1(arg, sha1) < 0)
1640  +              usage(describe_usage);
1641  +      cmit = lookup_commit_reference(sha1);
1642  +      if (!cmit)
1643  +              usage(describe_usage);
1645         if (!initialized) {
1646                 initialized = 1;
1647                 for_each_ref(get_name);
1649 .if n \{\
1655 .RS 4
1656 .ie n \{\
1657 \h'-04' 1.\h'+01'\c
1659 .el \{\
1660 .sp -1
1661 .IP "  1." 4.2
1663 It is preceded with a "git diff" header, that looks like this (when the
1664 \fB\-c\fR
1665 option is used):
1667 .if n \{\
1668 .RS 4
1671 diff \-\-combined file
1673 .if n \{\
1677 or like this (when the
1678 \fB\-\-cc\fR
1679 option is used):
1681 .if n \{\
1682 .RS 4
1685 diff \-\-cc file
1687 .if n \{\
1692 .RS 4
1693 .ie n \{\
1694 \h'-04' 2.\h'+01'\c
1696 .el \{\
1697 .sp -1
1698 .IP "  2." 4.2
1700 It is followed by one or more extended header lines (this example shows a merge with two parents):
1702 .if n \{\
1703 .RS 4
1706 index <hash>,<hash>\&.\&.<hash>
1707 mode <mode>,<mode>\&.\&.<mode>
1708 new file mode <mode>
1709 deleted file mode <mode>,<mode>
1711 .if n \{\
1716 \fBmode <mode>,<mode>\&.\&.<mode>\fR
1717 line appears only if at least one of the <mode> is different from the rest\&. Extended headers with information about detected contents movement (renames and copying detection) are designed to work with diff of two <tree\-ish> and are not used by combined diff format\&.
1720 .RS 4
1721 .ie n \{\
1722 \h'-04' 3.\h'+01'\c
1724 .el \{\
1725 .sp -1
1726 .IP "  3." 4.2
1728 It is followed by two\-line from\-file/to\-file header
1730 .if n \{\
1731 .RS 4
1734 \-\-\- a/file
1735 +++ b/file
1737 .if n \{\
1741 Similar to two\-line header for traditional
1742 \fIunified\fR
1743 diff format,
1744 \fB/dev/null\fR
1745 is used to signal created or deleted files\&.
1747 However, if the \-\-combined\-all\-paths option is provided, instead of a two\-line from\-file/to\-file you get a N+1 line from\-file/to\-file header, where N is the number of parents in the merge commit
1749 .if n \{\
1750 .RS 4
1753 \-\-\- a/file
1754 \-\-\- a/file
1755 \-\-\- a/file
1756 +++ b/file
1758 .if n \{\
1762 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\&.
1765 .RS 4
1766 .ie n \{\
1767 \h'-04' 4.\h'+01'\c
1769 .el \{\
1770 .sp -1
1771 .IP "  4." 4.2
1773 Chunk header format is modified to prevent people from accidentally feeding it to
1774 \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
1775 \fIindex\fR
1776 header:
1778 .if n \{\
1779 .RS 4
1782 @@@ <from\-file\-range> <from\-file\-range> <to\-file\-range> @@@
1784 .if n \{\
1788 There are (number of parents + 1)
1789 \fB@\fR
1790 characters in the chunk header for combined diff format\&.
1793 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\&.
1795 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)\&.
1797 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)\&.
1799 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")\&.
1800 .SH "OTHER DIFF FORMATS"
1802 The \fB\-\-summary\fR option describes newly added, deleted, renamed and copied files\&. The \fB\-\-stat\fR option adds diffstat(1) graph to the output\&. These options can be combined with other options, such as \fB\-p\fR, and are meant for human consumption\&.
1804 When showing a change that involves a rename or a copy, \fB\-\-stat\fR output formats the pathnames compactly by combining common prefix and suffix of the pathnames\&. For example, a change that moves \fBarch/i386/Makefile\fR to \fBarch/x86/Makefile\fR while modifying 4 lines will be shown like this:
1806 .if n \{\
1807 .RS 4
1810 arch/{i386 => x86}/Makefile    |   4 +\-\-
1812 .if n \{\
1817 The \fB\-\-numstat\fR option gives the diffstat(1) information but is designed for easier machine consumption\&. An entry in \fB\-\-numstat\fR output looks like this:
1819 .if n \{\
1820 .RS 4
1823 1       2       README
1824 3       1       arch/{i386 => x86}/Makefile
1826 .if n \{\
1831 That is, from left to right:
1833 .RS 4
1834 .ie n \{\
1835 \h'-04' 1.\h'+01'\c
1837 .el \{\
1838 .sp -1
1839 .IP "  1." 4.2
1841 the number of added lines;
1844 .RS 4
1845 .ie n \{\
1846 \h'-04' 2.\h'+01'\c
1848 .el \{\
1849 .sp -1
1850 .IP "  2." 4.2
1852 a tab;
1855 .RS 4
1856 .ie n \{\
1857 \h'-04' 3.\h'+01'\c
1859 .el \{\
1860 .sp -1
1861 .IP "  3." 4.2
1863 the number of deleted lines;
1866 .RS 4
1867 .ie n \{\
1868 \h'-04' 4.\h'+01'\c
1870 .el \{\
1871 .sp -1
1872 .IP "  4." 4.2
1874 a tab;
1877 .RS 4
1878 .ie n \{\
1879 \h'-04' 5.\h'+01'\c
1881 .el \{\
1882 .sp -1
1883 .IP "  5." 4.2
1885 pathname (possibly with rename/copy information);
1888 .RS 4
1889 .ie n \{\
1890 \h'-04' 6.\h'+01'\c
1892 .el \{\
1893 .sp -1
1894 .IP "  6." 4.2
1896 a newline\&.
1899 When \fB\-z\fR output option is in effect, the output is formatted this way:
1901 .if n \{\
1902 .RS 4
1905 1       2       README NUL
1906 3       1       NUL arch/i386/Makefile NUL arch/x86/Makefile NUL
1908 .if n \{\
1913 That is:
1915 .RS 4
1916 .ie n \{\
1917 \h'-04' 1.\h'+01'\c
1919 .el \{\
1920 .sp -1
1921 .IP "  1." 4.2
1923 the number of added lines;
1926 .RS 4
1927 .ie n \{\
1928 \h'-04' 2.\h'+01'\c
1930 .el \{\
1931 .sp -1
1932 .IP "  2." 4.2
1934 a tab;
1937 .RS 4
1938 .ie n \{\
1939 \h'-04' 3.\h'+01'\c
1941 .el \{\
1942 .sp -1
1943 .IP "  3." 4.2
1945 the number of deleted lines;
1948 .RS 4
1949 .ie n \{\
1950 \h'-04' 4.\h'+01'\c
1952 .el \{\
1953 .sp -1
1954 .IP "  4." 4.2
1956 a tab;
1959 .RS 4
1960 .ie n \{\
1961 \h'-04' 5.\h'+01'\c
1963 .el \{\
1964 .sp -1
1965 .IP "  5." 4.2
1967 a NUL (only exists if renamed/copied);
1970 .RS 4
1971 .ie n \{\
1972 \h'-04' 6.\h'+01'\c
1974 .el \{\
1975 .sp -1
1976 .IP "  6." 4.2
1978 pathname in preimage;
1981 .RS 4
1982 .ie n \{\
1983 \h'-04' 7.\h'+01'\c
1985 .el \{\
1986 .sp -1
1987 .IP "  7." 4.2
1989 a NUL (only exists if renamed/copied);
1992 .RS 4
1993 .ie n \{\
1994 \h'-04' 8.\h'+01'\c
1996 .el \{\
1997 .sp -1
1998 .IP "  8." 4.2
2000 pathname in postimage (only exists if renamed/copied);
2003 .RS 4
2004 .ie n \{\
2005 \h'-04' 9.\h'+01'\c
2007 .el \{\
2008 .sp -1
2009 .IP "  9." 4.2
2011 a NUL\&.
2014 The extra \fBNUL\fR before the preimage path in renamed case is to allow scripts that read the output to tell if the current record being read is a single\-path record or a rename/copy record without reading ahead\&. After reading added and deleted lines, reading up to \fBNUL\fR would yield the pathname, but if that is \fBNUL\fR, the record will show two paths\&.
2015 .SH "EXAMPLES"
2017 Various ways to check your working tree
2018 .RS 4
2020 .if n \{\
2021 .RS 4
2024 $ git diff            \fB(1)\fR
2025 $ git diff \-\-cached   \fB(2)\fR
2026 $ git diff HEAD       \fB(3)\fR
2028 .if n \{\
2032 \fB1. \fRChanges in the working tree not yet staged for the next commit\&.
2034 \fB2. \fRChanges between the index and your last commit; what you would be committing if you run
2035 \fBgit commit\fR
2036 without
2037 \fB\-a\fR
2038 option\&.
2040 \fB3. \fRChanges in the working tree since your last commit; what you would be committing if you run
2041 \fBgit commit \-a\fR
2045 Comparing with arbitrary commits
2046 .RS 4
2048 .if n \{\
2049 .RS 4
2052 $ git diff test            \fB(1)\fR
2053 $ git diff HEAD \-\- \&./test  \fB(2)\fR
2054 $ git diff HEAD^ HEAD      \fB(3)\fR
2056 .if n \{\
2060 \fB1. \fRInstead of using the tip of the current branch, compare with the tip of "test" branch\&.
2062 \fB2. \fRInstead of comparing with the tip of "test" branch, compare with the tip of the current branch, but limit the comparison to the file "test"\&.
2064 \fB3. \fRCompare the version before the last commit and the last commit\&.
2068 Comparing branches
2069 .RS 4
2071 .if n \{\
2072 .RS 4
2075 $ git diff topic master    \fB(1)\fR
2076 $ git diff topic\&.\&.master   \fB(2)\fR
2077 $ git diff topic\&.\&.\&.master  \fB(3)\fR
2079 .if n \{\
2083 \fB1. \fRChanges between the tips of the topic and the master branches\&.
2085 \fB2. \fRSame as above\&.
2087 \fB3. \fRChanges that occurred on the master branch since when the topic branch was started off it\&.
2091 Limiting the diff output
2092 .RS 4
2094 .if n \{\
2095 .RS 4
2098 $ git diff \-\-diff\-filter=MRC            \fB(1)\fR
2099 $ git diff \-\-name\-status                \fB(2)\fR
2100 $ git diff arch/i386 include/asm\-i386   \fB(3)\fR
2102 .if n \{\
2106 \fB1. \fRShow only modification, rename, and copy, but not addition or deletion\&.
2108 \fB2. \fRShow only names and the nature of change, but not actual diff output\&.
2110 \fB3. \fRLimit diff output to named subtrees\&.
2114 Munging the diff output
2115 .RS 4
2117 .if n \{\
2118 .RS 4
2121 $ git diff \-\-find\-copies\-harder \-B \-C  \fB(1)\fR
2122 $ git diff \-R                          \fB(2)\fR
2124 .if n \{\
2128 \fB1. \fRSpend extra cycles to find renames, copies and complete rewrites (very expensive)\&.
2130 \fB2. \fROutput diff in reverse\&.
2133 .SH "CONFIGURATION"
2135 Everything below this line in this section is selectively included from the \fBgit-config\fR(1) documentation\&. The content is the same as what\(cqs found there:
2137 diff\&.autoRefreshIndex
2138 .RS 4
2139 When using
2140 \fIgit diff\fR
2141 to compare with work tree files, do not consider stat\-only change as changed\&. Instead, silently run
2142 \fBgit update\-index \-\-refresh\fR
2143 to update the cached stat information for paths whose contents in the work tree match the contents in the index\&. This option defaults to true\&. Note that this affects only
2144 \fIgit diff\fR
2145 Porcelain, and not lower level
2146 \fIdiff\fR
2147 commands such as
2148 \fIgit diff\-files\fR\&.
2151 diff\&.dirstat
2152 .RS 4
2153 A comma separated list of
2154 \fB\-\-dirstat\fR
2155 parameters specifying the default behavior of the
2156 \fB\-\-dirstat\fR
2157 option to
2158 \fBgit-diff\fR(1)
2159 and friends\&. The defaults can be overridden on the command line (using
2160 \fB\-\-dirstat=<param1,param2,\&.\&.\&.>\fR)\&. The fallback defaults (when not changed by
2161 \fBdiff\&.dirstat\fR) are
2162 \fBchanges,noncumulative,3\fR\&. The following parameters are available:
2164 \fBchanges\fR
2165 .RS 4
2166 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\&.
2169 \fBlines\fR
2170 .RS 4
2171 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
2172 \fB\-\-dirstat\fR
2173 behavior than the
2174 \fBchanges\fR
2175 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
2176 \fB\-\-*stat\fR
2177 options\&.
2180 \fBfiles\fR
2181 .RS 4
2182 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
2183 \fB\-\-dirstat\fR
2184 behavior, since it does not have to look at the file contents at all\&.
2187 \fBcumulative\fR
2188 .RS 4
2189 Count changes in a child directory for the parent directory as well\&. Note that when using
2190 \fBcumulative\fR, the sum of the percentages reported may exceed 100%\&. The default (non\-cumulative) behavior can be specified with the
2191 \fBnoncumulative\fR
2192 parameter\&.
2195 <limit>
2196 .RS 4
2197 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\&.
2200 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:
2201 \fBfiles,10,cumulative\fR\&.
2204 diff\&.statGraphWidth
2205 .RS 4
2206 Limit the width of the graph part in \-\-stat output\&. If set, applies to all commands generating \-\-stat output except format\-patch\&.
2209 diff\&.context
2210 .RS 4
2211 Generate diffs with <n> lines of context instead of the default of 3\&. This value is overridden by the \-U option\&.
2214 diff\&.interHunkContext
2215 .RS 4
2216 Show the context between diff hunks, up to the specified number of lines, thereby fusing the hunks that are close to each other\&. This value serves as the default for the
2217 \fB\-\-inter\-hunk\-context\fR
2218 command line option\&.
2221 diff\&.external
2222 .RS 4
2223 If this config variable is set, diff generation is not performed using the internal diff machinery, but using the given command\&. Can be overridden with the \(oqGIT_EXTERNAL_DIFF\(cq environment variable\&. The command is called with parameters as described under "git Diffs" in
2224 \fBgit\fR(1)\&. Note: if you want to use an external diff program only on a subset of your files, you might want to use
2225 \fBgitattributes\fR(5)
2226 instead\&.
2229 diff\&.ignoreSubmodules
2230 .RS 4
2231 Sets the default value of \-\-ignore\-submodules\&. Note that this affects only
2232 \fIgit diff\fR
2233 Porcelain, and not lower level
2234 \fIdiff\fR
2235 commands such as
2236 \fIgit diff\-files\fR\&.
2237 \fIgit checkout\fR
2239 \fIgit switch\fR
2240 also honor this setting when reporting uncommitted changes\&. Setting it to
2241 \fIall\fR
2242 disables the submodule summary normally shown by
2243 \fIgit commit\fR
2245 \fIgit status\fR
2246 when
2247 \fBstatus\&.submoduleSummary\fR
2248 is set unless it is overridden by using the \-\-ignore\-submodules command\-line option\&. The
2249 \fIgit submodule\fR
2250 commands are not affected by this setting\&. By default this is set to untracked so that any untracked submodules are ignored\&.
2253 diff\&.mnemonicPrefix
2254 .RS 4
2255 If set,
2256 \fIgit diff\fR
2257 uses a prefix pair that is different from the standard "a/" and "b/" depending on what is being compared\&. When this configuration is in effect, reverse diff output also swaps the order of the prefixes:
2259 \fBgit diff\fR
2260 .RS 4
2261 compares the (i)ndex and the (w)ork tree;
2264 \fBgit diff HEAD\fR
2265 .RS 4
2266 compares a (c)ommit and the (w)ork tree;
2269 \fBgit diff \-\-cached\fR
2270 .RS 4
2271 compares a (c)ommit and the (i)ndex;
2274 \fBgit diff HEAD:file1 file2\fR
2275 .RS 4
2276 compares an (o)bject and a (w)ork tree entity;
2279 \fBgit diff \-\-no\-index a b\fR
2280 .RS 4
2281 compares two non\-git things (1) and (2)\&.
2285 diff\&.noprefix
2286 .RS 4
2287 If set,
2288 \fIgit diff\fR
2289 does not show any source or destination prefix\&.
2292 diff\&.relative
2293 .RS 4
2294 If set to
2295 \fItrue\fR,
2296 \fIgit diff\fR
2297 does not show changes outside of the directory and show pathnames relative to the current directory\&.
2300 diff\&.orderFile
2301 .RS 4
2302 File indicating how to order files within a diff\&. See the
2303 \fI\-O\fR
2304 option to
2305 \fBgit-diff\fR(1)
2306 for details\&. If
2307 \fBdiff\&.orderFile\fR
2308 is a relative pathname, it is treated as relative to the top of the working tree\&.
2311 diff\&.renameLimit
2312 .RS 4
2313 The number of files to consider in the exhaustive portion of copy/rename detection; equivalent to the
2314 \fIgit diff\fR
2315 option
2316 \fB\-l\fR\&. If not set, the default value is currently 1000\&. This setting has no effect if rename detection is turned off\&.
2319 diff\&.renames
2320 .RS 4
2321 Whether and how Git detects renames\&. If set to "false", rename detection is disabled\&. If set to "true", basic rename detection is enabled\&. If set to "copies" or "copy", Git will detect copies, as well\&. Defaults to true\&. Note that this affects only
2322 \fIgit diff\fR
2323 Porcelain like
2324 \fBgit-diff\fR(1)
2326 \fBgit-log\fR(1), and not lower level commands such as
2327 \fBgit-diff-files\fR(1)\&.
2330 diff\&.suppressBlankEmpty
2331 .RS 4
2332 A boolean to inhibit the standard behavior of printing a space before each empty output line\&. Defaults to false\&.
2335 diff\&.submodule
2336 .RS 4
2337 Specify the format in which differences in submodules are shown\&. The "short" format just shows the names of the commits at the beginning and end of the range\&. The "log" format lists the commits in the range like
2338 \fBgit-submodule\fR(1)
2339 \fBsummary\fR
2340 does\&. The "diff" format shows an inline diff of the changed contents of the submodule\&. Defaults to "short"\&.
2343 diff\&.wordRegex
2344 .RS 4
2345 A POSIX Extended Regular Expression used to determine what is a "word" when performing word\-by\-word difference calculations\&. Character sequences that match the regular expression are "words", all other characters are
2346 \fBignorable\fR
2347 whitespace\&.
2350 diff\&.<driver>\&.command
2351 .RS 4
2352 The custom diff driver command\&. See
2353 \fBgitattributes\fR(5)
2354 for details\&.
2357 diff\&.<driver>\&.xfuncname
2358 .RS 4
2359 The regular expression that the diff driver should use to recognize the hunk header\&. A built\-in pattern may also be used\&. See
2360 \fBgitattributes\fR(5)
2361 for details\&.
2364 diff\&.<driver>\&.binary
2365 .RS 4
2366 Set this option to true to make the diff driver treat files as binary\&. See
2367 \fBgitattributes\fR(5)
2368 for details\&.
2371 diff\&.<driver>\&.textconv
2372 .RS 4
2373 The command that the diff driver should call to generate the text\-converted version of a file\&. The result of the conversion is used to generate a human\-readable diff\&. See
2374 \fBgitattributes\fR(5)
2375 for details\&.
2378 diff\&.<driver>\&.wordRegex
2379 .RS 4
2380 The regular expression that the diff driver should use to split words in a line\&. See
2381 \fBgitattributes\fR(5)
2382 for details\&.
2385 diff\&.<driver>\&.cachetextconv
2386 .RS 4
2387 Set this option to true to make the diff driver cache the text conversion outputs\&. See
2388 \fBgitattributes\fR(5)
2389 for details\&.
2391 \fBaraxis\fR
2392 .RS 4
2393 Use Araxis Merge (requires a graphical session)
2396 \fBbc\fR
2397 .RS 4
2398 Use Beyond Compare (requires a graphical session)
2401 \fBbc3\fR
2402 .RS 4
2403 Use Beyond Compare (requires a graphical session)
2406 \fBbc4\fR
2407 .RS 4
2408 Use Beyond Compare (requires a graphical session)
2411 \fBcodecompare\fR
2412 .RS 4
2413 Use Code Compare (requires a graphical session)
2416 \fBdeltawalker\fR
2417 .RS 4
2418 Use DeltaWalker (requires a graphical session)
2421 \fBdiffmerge\fR
2422 .RS 4
2423 Use DiffMerge (requires a graphical session)
2426 \fBdiffuse\fR
2427 .RS 4
2428 Use Diffuse (requires a graphical session)
2431 \fBecmerge\fR
2432 .RS 4
2433 Use ECMerge (requires a graphical session)
2436 \fBemerge\fR
2437 .RS 4
2438 Use Emacs\(aq Emerge
2441 \fBexamdiff\fR
2442 .RS 4
2443 Use ExamDiff Pro (requires a graphical session)
2446 \fBguiffy\fR
2447 .RS 4
2448 Use Guiffy\(cqs Diff Tool (requires a graphical session)
2451 \fBgvimdiff\fR
2452 .RS 4
2453 Use gVim (requires a graphical session)
2456 \fBkdiff3\fR
2457 .RS 4
2458 Use KDiff3 (requires a graphical session)
2461 \fBkompare\fR
2462 .RS 4
2463 Use Kompare (requires a graphical session)
2466 \fBmeld\fR
2467 .RS 4
2468 Use Meld (requires a graphical session)
2471 \fBnvimdiff\fR
2472 .RS 4
2473 Use Neovim
2476 \fBopendiff\fR
2477 .RS 4
2478 Use FileMerge (requires a graphical session)
2481 \fBp4merge\fR
2482 .RS 4
2483 Use HelixCore P4Merge (requires a graphical session)
2486 \fBsmerge\fR
2487 .RS 4
2488 Use Sublime Merge (requires a graphical session)
2491 \fBtkdiff\fR
2492 .RS 4
2493 Use TkDiff (requires a graphical session)
2496 \fBvimdiff\fR
2497 .RS 4
2498 Use Vim
2501 \fBwinmerge\fR
2502 .RS 4
2503 Use WinMerge (requires a graphical session)
2506 \fBxxdiff\fR
2507 .RS 4
2508 Use xxdiff (requires a graphical session)
2512 diff\&.indentHeuristic
2513 .RS 4
2514 Set this option to
2515 \fBfalse\fR
2516 to disable the default heuristics that shift diff hunk boundaries to make patches easier to read\&.
2519 diff\&.algorithm
2520 .RS 4
2521 Choose a diff algorithm\&. The variants are as follows:
2523 \fBdefault\fR, \fBmyers\fR
2524 .RS 4
2525 The basic greedy diff algorithm\&. Currently, this is the default\&.
2528 \fBminimal\fR
2529 .RS 4
2530 Spend extra time to make sure the smallest possible diff is produced\&.
2533 \fBpatience\fR
2534 .RS 4
2535 Use "patience diff" algorithm when generating patches\&.
2538 \fBhistogram\fR
2539 .RS 4
2540 This algorithm extends the patience algorithm to "support low\-occurrence common elements"\&.
2544 diff\&.wsErrorHighlight
2545 .RS 4
2546 Highlight whitespace errors in the
2547 \fBcontext\fR,
2548 \fBold\fR
2550 \fBnew\fR
2551 lines of the diff\&. Multiple values are separated by comma,
2552 \fBnone\fR
2553 resets previous values,
2554 \fBdefault\fR
2555 reset the list to
2556 \fBnew\fR
2558 \fBall\fR
2559 is a shorthand for
2560 \fBold,new,context\fR\&. The whitespace errors are colored with
2561 \fBcolor\&.diff\&.whitespace\fR\&. The command line option
2562 \fB\-\-ws\-error\-highlight=<kind>\fR
2563 overrides this setting\&.
2566 diff\&.colorMoved
2567 .RS 4
2568 If set to either a valid
2569 \fB<mode>\fR
2570 or a true value, moved lines in a diff are colored differently, for details of valid modes see
2571 \fI\-\-color\-moved\fR
2573 \fBgit-diff\fR(1)\&. If simply set to true the default color mode will be used\&. When set to false, moved lines are not colored\&.
2576 diff\&.colorMovedWS
2577 .RS 4
2578 When moved lines are colored using e\&.g\&. the
2579 \fBdiff\&.colorMoved\fR
2580 setting, this option controls the
2581 \fB<mode>\fR
2582 how spaces are treated for details of valid modes see
2583 \fI\-\-color\-moved\-ws\fR
2585 \fBgit-diff\fR(1)\&.
2587 .SH "SEE ALSO"
2589 diff(1), \fBgit-difftool\fR(1), \fBgit-log\fR(1), \fBgitdiffcore\fR(7), \fBgit-format-patch\fR(1), \fBgit-apply\fR(1), \fBgit-show\fR(1)
2590 .SH "GIT"
2592 Part of the \fBgit\fR(1) suite