Autogenerated manpages for v2.34.1-8-g35151
[git-manpages.git] / man1 / git-diff.1
blobbc4d15a9ac151fdcefe9b4605034aad9201a1955
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: 11/24/2021
6 .\"    Manual: Git Manual
7 .\"    Source: Git 2.34.1.8.g35151cf072
8 .\"  Language: English
9 .\"
10 .TH "GIT\-DIFF" "1" "11/24/2021" "Git 2\&.34\&.1\&.8\&.g35151cf0" "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\&. A convenient way to produce the desired set of revisions is to use the
96 \fB^@\fR
97 suffix\&. For instance, if
98 \fBmaster\fR
99 names a merge commit,
100 \fBgit diff master master^@\fR
101 gives the same combined diff as
102 \fBgit show master\fR\&.
105 \fIgit diff\fR [<options>] <commit>\&.\&.<commit> [\-\-] [<path>\&...]
106 .RS 4
107 This is synonymous to the earlier form (without the
108 \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\&.
111 \fIgit diff\fR [<options>] <commit>\&.\&.\&.<commit> [\-\-] [<path>\&...]
112 .RS 4
113 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>\&.
114 \fBgit diff A\&.\&.\&.B\fR
115 is equivalent to
116 \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\&.
119 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>\&.
121 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)\&.
123 \fIgit diff\fR [<options>] <blob> <blob>
124 .RS 4
125 This form is to view the differences between the raw contents of two blob objects\&.
127 .SH "OPTIONS"
129 \-p, \-u, \-\-patch
130 .RS 4
131 Generate patch (see section on generating patches)\&. This is the default\&.
134 \-s, \-\-no\-patch
135 .RS 4
136 Suppress diff output\&. Useful for commands like
137 \fBgit show\fR
138 that show the patch by default, or to cancel the effect of
139 \fB\-\-patch\fR\&.
142 \-U<n>, \-\-unified=<n>
143 .RS 4
144 Generate diffs with <n> lines of context instead of the usual three\&. Implies
145 \fB\-\-patch\fR\&.
148 \-\-output=<file>
149 .RS 4
150 Output to a specific file instead of stdout\&.
153 \-\-output\-indicator\-new=<char>, \-\-output\-indicator\-old=<char>, \-\-output\-indicator\-context=<char>
154 .RS 4
155 Specify the character used to indicate new, old or context lines in the generated patch\&. Normally they are
156 \fI+\fR,
157 \fI\-\fR
158 and \(aq \(aq respectively\&.
161 \-\-raw
162 .RS 4
163 Generate the diff in raw format\&.
166 \-\-patch\-with\-raw
167 .RS 4
168 Synonym for
169 \fB\-p \-\-raw\fR\&.
172 \-\-indent\-heuristic
173 .RS 4
174 Enable the heuristic that shifts diff hunk boundaries to make patches easier to read\&. This is the default\&.
177 \-\-no\-indent\-heuristic
178 .RS 4
179 Disable the indent heuristic\&.
182 \-\-minimal
183 .RS 4
184 Spend extra time to make sure the smallest possible diff is produced\&.
187 \-\-patience
188 .RS 4
189 Generate a diff using the "patience diff" algorithm\&.
192 \-\-histogram
193 .RS 4
194 Generate a diff using the "histogram diff" algorithm\&.
197 \-\-anchored=<text>
198 .RS 4
199 Generate a diff using the "anchored diff" algorithm\&.
201 This option may be specified more than once\&.
203 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\&.
206 \-\-diff\-algorithm={patience|minimal|histogram|myers}
207 .RS 4
208 Choose a diff algorithm\&. The variants are as follows:
210 \fBdefault\fR, \fBmyers\fR
211 .RS 4
212 The basic greedy diff algorithm\&. Currently, this is the default\&.
215 \fBminimal\fR
216 .RS 4
217 Spend extra time to make sure the smallest possible diff is produced\&.
220 \fBpatience\fR
221 .RS 4
222 Use "patience diff" algorithm when generating patches\&.
225 \fBhistogram\fR
226 .RS 4
227 This algorithm extends the patience algorithm to "support low\-occurrence common elements"\&.
230 For instance, if you configured the
231 \fBdiff\&.algorithm\fR
232 variable to a non\-default value and want to use the default one, then you have to use
233 \fB\-\-diff\-algorithm=default\fR
234 option\&.
237 \-\-stat[=<width>[,<name\-width>[,<count>]]]
238 .RS 4
239 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
240 \fB<width>\fR\&. The width of the filename part can be limited by giving another width
241 \fB<name\-width>\fR
242 after a comma\&. The width of the graph part can be limited by using
243 \fB\-\-stat\-graph\-width=<width>\fR
244 (affects all commands generating a stat graph) or by setting
245 \fBdiff\&.statGraphWidth=<width>\fR
246 (does not affect
247 \fBgit format\-patch\fR)\&. By giving a third parameter
248 \fB<count>\fR, you can limit the output to the first
249 \fB<count>\fR
250 lines, followed by
251 \fB\&.\&.\&.\fR
252 if there are more\&.
254 These parameters can also be set individually with
255 \fB\-\-stat\-width=<width>\fR,
256 \fB\-\-stat\-name\-width=<name\-width>\fR
258 \fB\-\-stat\-count=<count>\fR\&.
261 \-\-compact\-summary
262 .RS 4
263 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
264 \fB\-\-stat\fR\&.
267 \-\-numstat
268 .RS 4
269 Similar to
270 \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
271 \fB\-\fR
272 instead of saying
273 \fB0 0\fR\&.
276 \-\-shortstat
277 .RS 4
278 Output only the last line of the
279 \fB\-\-stat\fR
280 format containing total number of modified files, as well as number of added and deleted lines\&.
283 \-X[<param1,param2,\&...>], \-\-dirstat[=<param1,param2,\&...>]
284 .RS 4
285 Output the distribution of relative amount of changes for each sub\-directory\&. The behavior of
286 \fB\-\-dirstat\fR
287 can be customized by passing it a comma separated list of parameters\&. The defaults are controlled by the
288 \fBdiff\&.dirstat\fR
289 configuration variable (see
290 \fBgit-config\fR(1))\&. The following parameters are available:
292 \fBchanges\fR
293 .RS 4
294 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\&.
297 \fBlines\fR
298 .RS 4
299 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
300 \fB\-\-dirstat\fR
301 behavior than the
302 \fBchanges\fR
303 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
304 \fB\-\-*stat\fR
305 options\&.
308 \fBfiles\fR
309 .RS 4
310 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
311 \fB\-\-dirstat\fR
312 behavior, since it does not have to look at the file contents at all\&.
315 \fBcumulative\fR
316 .RS 4
317 Count changes in a child directory for the parent directory as well\&. Note that when using
318 \fBcumulative\fR, the sum of the percentages reported may exceed 100%\&. The default (non\-cumulative) behavior can be specified with the
319 \fBnoncumulative\fR
320 parameter\&.
323 <limit>
324 .RS 4
325 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\&.
328 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:
329 \fB\-\-dirstat=files,10,cumulative\fR\&.
332 \-\-cumulative
333 .RS 4
334 Synonym for \-\-dirstat=cumulative
337 \-\-dirstat\-by\-file[=<param1,param2>\&...]
338 .RS 4
339 Synonym for \-\-dirstat=files,param1,param2\&...
342 \-\-summary
343 .RS 4
344 Output a condensed summary of extended header information such as creations, renames and mode changes\&.
347 \-\-patch\-with\-stat
348 .RS 4
349 Synonym for
350 \fB\-p \-\-stat\fR\&.
354 .RS 4
355 When
356 \fB\-\-raw\fR,
357 \fB\-\-numstat\fR,
358 \fB\-\-name\-only\fR
360 \fB\-\-name\-status\fR
361 has been given, do not munge pathnames and use NULs as output field terminators\&.
363 Without this option, pathnames with "unusual" characters are quoted as explained for the configuration variable
364 \fBcore\&.quotePath\fR
365 (see
366 \fBgit-config\fR(1))\&.
369 \-\-name\-only
370 .RS 4
371 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
372 \fBgit-log\fR(1)
373 manual page\&.
376 \-\-name\-status
377 .RS 4
378 Show only names and status of changed files\&. See the description of the
379 \fB\-\-diff\-filter\fR
380 option on what the status letters mean\&. Just like
381 \fB\-\-name\-only\fR
382 the file names are often encoded in UTF\-8\&.
385 \-\-submodule[=<format>]
386 .RS 4
387 Specify how differences in submodules are shown\&. When specifying
388 \fB\-\-submodule=short\fR
390 \fIshort\fR
391 format is used\&. This format just shows the names of the commits at the beginning and end of the range\&. When
392 \fB\-\-submodule\fR
394 \fB\-\-submodule=log\fR
395 is specified, the
396 \fIlog\fR
397 format is used\&. This format lists the commits in the range like
398 \fBgit-submodule\fR(1)
399 \fBsummary\fR
400 does\&. When
401 \fB\-\-submodule=diff\fR
402 is specified, the
403 \fIdiff\fR
404 format is used\&. This format shows an inline diff of the changes in the submodule contents between the commit range\&. Defaults to
405 \fBdiff\&.submodule\fR
406 or the
407 \fIshort\fR
408 format if the config option is unset\&.
411 \-\-color[=<when>]
412 .RS 4
413 Show colored diff\&.
414 \fB\-\-color\fR
415 (i\&.e\&. without
416 \fI=<when>\fR) is the same as
417 \fB\-\-color=always\fR\&.
418 \fI<when>\fR
419 can be one of
420 \fBalways\fR,
421 \fBnever\fR, or
422 \fBauto\fR\&. It can be changed by the
423 \fBcolor\&.ui\fR
425 \fBcolor\&.diff\fR
426 configuration settings\&.
429 \-\-no\-color
430 .RS 4
431 Turn off colored diff\&. This can be used to override configuration settings\&. It is the same as
432 \fB\-\-color=never\fR\&.
435 \-\-color\-moved[=<mode>]
436 .RS 4
437 Moved lines of code are colored differently\&. It can be changed by the
438 \fBdiff\&.colorMoved\fR
439 configuration setting\&. The <mode> defaults to
440 \fIno\fR
441 if the option is not given and to
442 \fIzebra\fR
443 if the option with no mode is given\&. The mode must be one of:
446 .RS 4
447 Moved lines are not highlighted\&.
450 default
451 .RS 4
452 Is a synonym for
453 \fBzebra\fR\&. This may change to a more sensible mode in the future\&.
456 plain
457 .RS 4
458 Any line that is added in one location and was removed in another location will be colored with
459 \fIcolor\&.diff\&.newMoved\fR\&. Similarly
460 \fIcolor\&.diff\&.oldMoved\fR
461 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\&.
464 blocks
465 .RS 4
466 Blocks of moved text of at least 20 alphanumeric characters are detected greedily\&. The detected blocks are painted using either the
467 \fIcolor\&.diff\&.{old,new}Moved\fR
468 color\&. Adjacent blocks cannot be told apart\&.
471 zebra
472 .RS 4
473 Blocks of moved text are detected as in
474 \fIblocks\fR
475 mode\&. The blocks are painted using either the
476 \fIcolor\&.diff\&.{old,new}Moved\fR
477 color or
478 \fIcolor\&.diff\&.{old,new}MovedAlternative\fR\&. The change between the two colors indicates that a new block was detected\&.
481 dimmed\-zebra
482 .RS 4
483 Similar to
484 \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\&.
485 \fBdimmed_zebra\fR
486 is a deprecated synonym\&.
490 \-\-no\-color\-moved
491 .RS 4
492 Turn off move detection\&. This can be used to override configuration settings\&. It is the same as
493 \fB\-\-color\-moved=no\fR\&.
496 \-\-color\-moved\-ws=<modes>
497 .RS 4
498 This configures how whitespace is ignored when performing the move detection for
499 \fB\-\-color\-moved\fR\&. It can be set by the
500 \fBdiff\&.colorMovedWS\fR
501 configuration setting\&. These modes can be given as a comma separated list:
504 .RS 4
505 Do not ignore whitespace when performing move detection\&.
508 ignore\-space\-at\-eol
509 .RS 4
510 Ignore changes in whitespace at EOL\&.
513 ignore\-space\-change
514 .RS 4
515 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\&.
518 ignore\-all\-space
519 .RS 4
520 Ignore whitespace when comparing lines\&. This ignores differences even if one line has whitespace where the other line has none\&.
523 allow\-indentation\-change
524 .RS 4
525 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\&.
529 \-\-no\-color\-moved\-ws
530 .RS 4
531 Do not ignore whitespace when performing move detection\&. This can be used to override configuration settings\&. It is the same as
532 \fB\-\-color\-moved\-ws=no\fR\&.
535 \-\-word\-diff[=<mode>]
536 .RS 4
537 Show a word diff, using the <mode> to delimit changed words\&. By default, words are delimited by whitespace; see
538 \fB\-\-word\-diff\-regex\fR
539 below\&. The <mode> defaults to
540 \fIplain\fR, and must be one of:
542 color
543 .RS 4
544 Highlight changed words using only colors\&. Implies
545 \fB\-\-color\fR\&.
548 plain
549 .RS 4
550 Show words as
551 \fB[\-removed\-]\fR
553 \fB{+added+}\fR\&. Makes no attempts to escape the delimiters if they appear in the input, so the output may be ambiguous\&.
556 porcelain
557 .RS 4
558 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
559 \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
560 \fB~\fR
561 on a line of its own\&.
564 none
565 .RS 4
566 Disable word diff again\&.
569 Note that despite the name of the first mode, color is used to highlight the changed parts in all modes if enabled\&.
572 \-\-word\-diff\-regex=<regex>
573 .RS 4
574 Use <regex> to decide what a word is, instead of considering runs of non\-whitespace to be a word\&. Also implies
575 \fB\-\-word\-diff\fR
576 unless it was already enabled\&.
578 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
579 \fB|[^[:space:]]\fR
580 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\&.
582 For example,
583 \fB\-\-word\-diff\-regex=\&.\fR
584 will treat each character as a word and, correspondingly, show differences character by character\&.
586 The regex can also be set via a diff driver or configuration option, see
587 \fBgitattributes\fR(5)
589 \fBgit-config\fR(1)\&. Giving it explicitly overrides any diff driver or configuration setting\&. Diff drivers override configuration settings\&.
592 \-\-color\-words[=<regex>]
593 .RS 4
594 Equivalent to
595 \fB\-\-word\-diff=color\fR
596 plus (if a regex was specified)
597 \fB\-\-word\-diff\-regex=<regex>\fR\&.
600 \-\-no\-renames
601 .RS 4
602 Turn off rename detection, even when the configuration file gives the default to do so\&.
605 \-\-[no\-]rename\-empty
606 .RS 4
607 Whether to use empty blobs as rename source\&.
610 \-\-check
611 .RS 4
612 Warn if changes introduce conflict markers or whitespace errors\&. What are considered whitespace errors is controlled by
613 \fBcore\&.whitespace\fR
614 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\&.
617 \-\-ws\-error\-highlight=<kind>
618 .RS 4
619 Highlight whitespace errors in the
620 \fBcontext\fR,
621 \fBold\fR
623 \fBnew\fR
624 lines of the diff\&. Multiple values are separated by comma,
625 \fBnone\fR
626 resets previous values,
627 \fBdefault\fR
628 reset the list to
629 \fBnew\fR
631 \fBall\fR
632 is a shorthand for
633 \fBold,new,context\fR\&. When this option is not given, and the configuration variable
634 \fBdiff\&.wsErrorHighlight\fR
635 is not set, only whitespace errors in
636 \fBnew\fR
637 lines are highlighted\&. The whitespace errors are colored with
638 \fBcolor\&.diff\&.whitespace\fR\&.
641 \-\-full\-index
642 .RS 4
643 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\&.
646 \-\-binary
647 .RS 4
648 In addition to
649 \fB\-\-full\-index\fR, output a binary diff that can be applied with
650 \fBgit\-apply\fR\&. Implies
651 \fB\-\-patch\fR\&.
654 \-\-abbrev[=<n>]
655 .RS 4
656 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
657 \fI<n>\fR
658 hexdigits long that uniquely refers the object\&. In diff\-patch output format,
659 \fB\-\-full\-index\fR
660 takes higher precedence, i\&.e\&. if
661 \fB\-\-full\-index\fR
662 is specified, full blob names will be shown regardless of
663 \fB\-\-abbrev\fR\&. Non default number of digits can be specified with
664 \fB\-\-abbrev=<n>\fR\&.
667 \-B[<n>][/<m>], \-\-break\-rewrites[=[<n>][/<m>]]
668 .RS 4
669 Break complete rewrite changes into pairs of delete and create\&. This serves two purposes:
671 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
672 \fBm\fR
673 controls this aspect of the \-B option (defaults to 60%)\&.
674 \fB\-B/70%\fR
675 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)\&.
677 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
678 \fBn\fR
679 controls this aspect of the \-B option (defaults to 50%)\&.
680 \fB\-B20%\fR
681 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\&.
684 \-M[<n>], \-\-find\-renames[=<n>]
685 .RS 4
686 Detect renames\&. If
687 \fBn\fR
688 is specified, it is a threshold on the similarity index (i\&.e\&. amount of addition/deletions compared to the file\(cqs size)\&. For example,
689 \fB\-M90%\fR
690 means Git should consider a delete/add pair to be a rename if more than 90% of the file hasn\(cqt changed\&. Without a
691 \fB%\fR
692 sign, the number is to be read as a fraction, with a decimal point before it\&. I\&.e\&.,
693 \fB\-M5\fR
694 becomes 0\&.5, and is thus the same as
695 \fB\-M50%\fR\&. Similarly,
696 \fB\-M05\fR
697 is the same as
698 \fB\-M5%\fR\&. To limit detection to exact renames, use
699 \fB\-M100%\fR\&. The default similarity index is 50%\&.
702 \-C[<n>], \-\-find\-copies[=<n>]
703 .RS 4
704 Detect copies as well as renames\&. See also
705 \fB\-\-find\-copies\-harder\fR\&. If
706 \fBn\fR
707 is specified, it has the same meaning as for
708 \fB\-M<n>\fR\&.
711 \-\-find\-copies\-harder
712 .RS 4
713 For performance reasons, by default,
714 \fB\-C\fR
715 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
716 \fB\-C\fR
717 option has the same effect\&.
720 \-D, \-\-irreversible\-delete
721 .RS 4
722 Omit the preimage for deletes, i\&.e\&. print only the header but not the diff between the preimage and
723 \fB/dev/null\fR\&. The resulting patch is not meant to be applied with
724 \fBpatch\fR
726 \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\&.
728 When used together with
729 \fB\-B\fR, omit also the preimage in the deletion part of a delete/create pair\&.
732 \-l<num>
733 .RS 4
735 \fB\-M\fR
737 \fB\-C\fR
738 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\&.
741 \-\-diff\-filter=[(A|C|D|M|R|T|U|X|B)\&...[*]]
742 .RS 4
743 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
744 \fB*\fR
745 (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\&.
747 Also, these upper\-case letters can be downcased to exclude\&. E\&.g\&.
748 \fB\-\-diff\-filter=ad\fR
749 excludes added and deleted paths\&.
751 Note that not all diffs can feature all types\&. For instance, diffs from the index to the working tree can never have Added entries (because the set of paths included in the diff is limited by what is in the index)\&. Similarly, copied and renamed entries cannot appear if detection for those types is disabled\&.
754 \-S<string>
755 .RS 4
756 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\&.
758 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
759 \fB\-S\fR, and keep going until you get the very first version of the block\&.
761 Binary files are searched as well\&.
764 \-G<regex>
765 .RS 4
766 Look for differences whose patch text contains added/removed lines that match <regex>\&.
768 To illustrate the difference between
769 \fB\-S<regex> \-\-pickaxe\-regex\fR
771 \fB\-G<regex>\fR, consider a commit with the following diff in the same file:
773 .if n \{\
774 .RS 4
777 +    return frotz(nitfol, two\->ptr, 1, 0);
778 \&.\&.\&.
779 \-    hit = frotz(nitfol, mf2\&.ptr, 1, 0);
781 .if n \{\
785 While
786 \fBgit log \-G"frotz\e(nitfol"\fR
787 will show this commit,
788 \fBgit log \-S"frotz\e(nitfol" \-\-pickaxe\-regex\fR
789 will not (because the number of occurrences of that string did not change)\&.
791 Unless
792 \fB\-\-text\fR
793 is supplied patches of binary files without a textconv filter will be ignored\&.
795 See the
796 \fIpickaxe\fR
797 entry in
798 \fBgitdiffcore\fR(7)
799 for more information\&.
802 \-\-find\-object=<object\-id>
803 .RS 4
804 Look for differences that change the number of occurrences of the specified object\&. Similar to
805 \fB\-S\fR, just the argument is different in that it doesn\(cqt search for a specific string but for a specific object id\&.
807 The object can be a blob or a submodule commit\&. It implies the
808 \fB\-t\fR
809 option in
810 \fBgit\-log\fR
811 to also find trees\&.
814 \-\-pickaxe\-all
815 .RS 4
816 When
817 \fB\-S\fR
819 \fB\-G\fR
820 finds a change, show all the changes in that changeset, not just the files that contain the change in <string>\&.
823 \-\-pickaxe\-regex
824 .RS 4
825 Treat the <string> given to
826 \fB\-S\fR
827 as an extended POSIX regular expression to match\&.
830 \-O<orderfile>
831 .RS 4
832 Control the order in which files appear in the output\&. This overrides the
833 \fBdiff\&.orderFile\fR
834 configuration variable (see
835 \fBgit-config\fR(1))\&. To cancel
836 \fBdiff\&.orderFile\fR, use
837 \fB\-O/dev/null\fR\&.
839 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\&.
841 <orderfile> is parsed as follows:
843 .RS 4
844 .ie n \{\
845 \h'-04'\(bu\h'+03'\c
847 .el \{\
848 .sp -1
849 .IP \(bu 2.3
851 Blank lines are ignored, so they can be used as separators for readability\&.
854 .RS 4
855 .ie n \{\
856 \h'-04'\(bu\h'+03'\c
858 .el \{\
859 .sp -1
860 .IP \(bu 2.3
862 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\&.
865 .RS 4
866 .ie n \{\
867 \h'-04'\(bu\h'+03'\c
869 .el \{\
870 .sp -1
871 .IP \(bu 2.3
873 Each other line contains a single pattern\&.
876 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"\&.
879 \-\-skip\-to=<file>, \-\-rotate\-to=<file>
880 .RS 4
881 Discard the files before the named <file> from the output (i\&.e\&.
882 \fIskip to\fR), or move them to the end of the output (i\&.e\&.
883 \fIrotate to\fR)\&. These were invented primarily for use of the
884 \fBgit difftool\fR
885 command, and may not be very useful otherwise\&.
889 .RS 4
890 Swap two inputs; that is, show differences from index or on\-disk file to tree contents\&.
893 \-\-relative[=<path>], \-\-no\-relative
894 .RS 4
895 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\&.
896 \fB\-\-no\-relative\fR
897 can be used to countermand both
898 \fBdiff\&.relative\fR
899 config option and previous
900 \fB\-\-relative\fR\&.
903 \-a, \-\-text
904 .RS 4
905 Treat all files as text\&.
908 \-\-ignore\-cr\-at\-eol
909 .RS 4
910 Ignore carriage\-return at the end of line when doing a comparison\&.
913 \-\-ignore\-space\-at\-eol
914 .RS 4
915 Ignore changes in whitespace at EOL\&.
918 \-b, \-\-ignore\-space\-change
919 .RS 4
920 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\&.
923 \-w, \-\-ignore\-all\-space
924 .RS 4
925 Ignore whitespace when comparing lines\&. This ignores differences even if one line has whitespace where the other line has none\&.
928 \-\-ignore\-blank\-lines
929 .RS 4
930 Ignore changes whose lines are all blank\&.
933 \-I<regex>, \-\-ignore\-matching\-lines=<regex>
934 .RS 4
935 Ignore changes whose all lines match <regex>\&. This option may be specified more than once\&.
938 \-\-inter\-hunk\-context=<lines>
939 .RS 4
940 Show the context between diff hunks, up to the specified number of lines, thereby fusing hunks that are close to each other\&. Defaults to
941 \fBdiff\&.interHunkContext\fR
942 or 0 if the config option is unset\&.
945 \-W, \-\-function\-context
946 .RS 4
947 Show whole function as context lines for each change\&. The function names are determined in the same way as
948 \fBgit diff\fR
949 works out patch hunk headers (see
950 \fIDefining a custom hunk\-header\fR
952 \fBgitattributes\fR(5))\&.
955 \-\-exit\-code
956 .RS 4
957 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\&.
960 \-\-quiet
961 .RS 4
962 Disable all output of the program\&. Implies
963 \fB\-\-exit\-code\fR\&.
966 \-\-ext\-diff
967 .RS 4
968 Allow an external diff helper to be executed\&. If you set an external diff driver with
969 \fBgitattributes\fR(5), you need to use this option with
970 \fBgit-log\fR(1)
971 and friends\&.
974 \-\-no\-ext\-diff
975 .RS 4
976 Disallow external diff drivers\&.
979 \-\-textconv, \-\-no\-textconv
980 .RS 4
981 Allow (or disallow) external text conversion filters to be run when comparing binary files\&. See
982 \fBgitattributes\fR(5)
983 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
984 \fBgit-diff\fR(1)
986 \fBgit-log\fR(1), but not for
987 \fBgit-format-patch\fR(1)
988 or diff plumbing commands\&.
991 \-\-ignore\-submodules[=<when>]
992 .RS 4
993 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
994 \fIignore\fR
995 option in
996 \fBgit-config\fR(1)
998 \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\&.
1001 \-\-src\-prefix=<prefix>
1002 .RS 4
1003 Show the given source prefix instead of "a/"\&.
1006 \-\-dst\-prefix=<prefix>
1007 .RS 4
1008 Show the given destination prefix instead of "b/"\&.
1011 \-\-no\-prefix
1012 .RS 4
1013 Do not show any source or destination prefix\&.
1016 \-\-line\-prefix=<prefix>
1017 .RS 4
1018 Prepend an additional prefix to every line of output\&.
1021 \-\-ita\-invisible\-in\-index
1022 .RS 4
1023 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
1024 \fB\-\-ita\-visible\-in\-index\fR\&. Both options are experimental and could be removed in future\&.
1027 For more detailed explanation on these common options, see also \fBgitdiffcore\fR(7)\&.
1029 \-1 \-\-base, \-2 \-\-ours, \-3 \-\-theirs
1030 .RS 4
1031 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
1032 \fBgit-read-tree\fR(1)
1033 section "3\-Way Merge" for detailed information\&.
1037 .RS 4
1038 Omit diff output for unmerged entries and just show "Unmerged"\&. Can be used only when comparing the working tree with the index\&.
1041 <path>\&...
1042 .RS 4
1043 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)\&.
1045 .SH "RAW OUTPUT FORMAT"
1047 The raw output format from "git\-diff\-index", "git\-diff\-tree", "git\-diff\-files" and "git diff \-\-raw" are very similar\&.
1049 These commands all compare two sets of things; what is compared differs:
1051 git\-diff\-index <tree\-ish>
1052 .RS 4
1053 compares the <tree\-ish> and the files on the filesystem\&.
1056 git\-diff\-index \-\-cached <tree\-ish>
1057 .RS 4
1058 compares the <tree\-ish> and the index\&.
1061 git\-diff\-tree [\-r] <tree\-ish\-1> <tree\-ish\-2> [<pattern>\&...]
1062 .RS 4
1063 compares the trees named by the two arguments\&.
1066 git\-diff\-files [<pattern>\&...]
1067 .RS 4
1068 compares the index and the files on the filesystem\&.
1071 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\&.
1073 An output line is formatted this way:
1075 .if n \{\
1076 .RS 4
1079 in\-place edit  :100644 100644 bcd1234 0123456 M file0
1080 copy\-edit      :100644 100644 abcd123 1234567 C68 file1 file2
1081 rename\-edit    :100644 100644 abcd123 1234567 R86 file1 file3
1082 create         :000000 100644 0000000 1234567 A file4
1083 delete         :100644 000000 1234567 0000000 D file5
1084 unmerged       :000000 000000 0000000 0000000 U file6
1086 .if n \{\
1091 That is, from the left to the right:
1093 .RS 4
1094 .ie n \{\
1095 \h'-04' 1.\h'+01'\c
1097 .el \{\
1098 .sp -1
1099 .IP "  1." 4.2
1101 a colon\&.
1104 .RS 4
1105 .ie n \{\
1106 \h'-04' 2.\h'+01'\c
1108 .el \{\
1109 .sp -1
1110 .IP "  2." 4.2
1112 mode for "src"; 000000 if creation or unmerged\&.
1115 .RS 4
1116 .ie n \{\
1117 \h'-04' 3.\h'+01'\c
1119 .el \{\
1120 .sp -1
1121 .IP "  3." 4.2
1123 a space\&.
1126 .RS 4
1127 .ie n \{\
1128 \h'-04' 4.\h'+01'\c
1130 .el \{\
1131 .sp -1
1132 .IP "  4." 4.2
1134 mode for "dst"; 000000 if deletion or unmerged\&.
1137 .RS 4
1138 .ie n \{\
1139 \h'-04' 5.\h'+01'\c
1141 .el \{\
1142 .sp -1
1143 .IP "  5." 4.2
1145 a space\&.
1148 .RS 4
1149 .ie n \{\
1150 \h'-04' 6.\h'+01'\c
1152 .el \{\
1153 .sp -1
1154 .IP "  6." 4.2
1156 sha1 for "src"; 0{40} if creation or unmerged\&.
1159 .RS 4
1160 .ie n \{\
1161 \h'-04' 7.\h'+01'\c
1163 .el \{\
1164 .sp -1
1165 .IP "  7." 4.2
1167 a space\&.
1170 .RS 4
1171 .ie n \{\
1172 \h'-04' 8.\h'+01'\c
1174 .el \{\
1175 .sp -1
1176 .IP "  8." 4.2
1178 sha1 for "dst"; 0{40} if creation, unmerged or "look at work tree"\&.
1181 .RS 4
1182 .ie n \{\
1183 \h'-04' 9.\h'+01'\c
1185 .el \{\
1186 .sp -1
1187 .IP "  9." 4.2
1189 a space\&.
1192 .RS 4
1193 .ie n \{\
1194 \h'-04'10.\h'+01'\c
1196 .el \{\
1197 .sp -1
1198 .IP "10." 4.2
1200 status, followed by optional "score" number\&.
1203 .RS 4
1204 .ie n \{\
1205 \h'-04'11.\h'+01'\c
1207 .el \{\
1208 .sp -1
1209 .IP "11." 4.2
1211 a tab or a NUL when
1212 \fB\-z\fR
1213 option is used\&.
1216 .RS 4
1217 .ie n \{\
1218 \h'-04'12.\h'+01'\c
1220 .el \{\
1221 .sp -1
1222 .IP "12." 4.2
1224 path for "src"
1227 .RS 4
1228 .ie n \{\
1229 \h'-04'13.\h'+01'\c
1231 .el \{\
1232 .sp -1
1233 .IP "13." 4.2
1235 a tab or a NUL when
1236 \fB\-z\fR
1237 option is used; only exists for C or R\&.
1240 .RS 4
1241 .ie n \{\
1242 \h'-04'14.\h'+01'\c
1244 .el \{\
1245 .sp -1
1246 .IP "14." 4.2
1248 path for "dst"; only exists for C or R\&.
1251 .RS 4
1252 .ie n \{\
1253 \h'-04'15.\h'+01'\c
1255 .el \{\
1256 .sp -1
1257 .IP "15." 4.2
1259 an LF or a NUL when
1260 \fB\-z\fR
1261 option is used, to terminate the record\&.
1264 Possible status letters are:
1266 .RS 4
1267 .ie n \{\
1268 \h'-04'\(bu\h'+03'\c
1270 .el \{\
1271 .sp -1
1272 .IP \(bu 2.3
1274 A: addition of a file
1277 .RS 4
1278 .ie n \{\
1279 \h'-04'\(bu\h'+03'\c
1281 .el \{\
1282 .sp -1
1283 .IP \(bu 2.3
1285 C: copy of a file into a new one
1288 .RS 4
1289 .ie n \{\
1290 \h'-04'\(bu\h'+03'\c
1292 .el \{\
1293 .sp -1
1294 .IP \(bu 2.3
1296 D: deletion of a file
1299 .RS 4
1300 .ie n \{\
1301 \h'-04'\(bu\h'+03'\c
1303 .el \{\
1304 .sp -1
1305 .IP \(bu 2.3
1307 M: modification of the contents or mode of a file
1310 .RS 4
1311 .ie n \{\
1312 \h'-04'\(bu\h'+03'\c
1314 .el \{\
1315 .sp -1
1316 .IP \(bu 2.3
1318 R: renaming of a file
1321 .RS 4
1322 .ie n \{\
1323 \h'-04'\(bu\h'+03'\c
1325 .el \{\
1326 .sp -1
1327 .IP \(bu 2.3
1329 T: change in the type of the file (regular file, symbolic link or submodule)
1332 .RS 4
1333 .ie n \{\
1334 \h'-04'\(bu\h'+03'\c
1336 .el \{\
1337 .sp -1
1338 .IP \(bu 2.3
1340 U: file is unmerged (you must complete the merge before it can be committed)
1343 .RS 4
1344 .ie n \{\
1345 \h'-04'\(bu\h'+03'\c
1347 .el \{\
1348 .sp -1
1349 .IP \(bu 2.3
1351 X: "unknown" change type (most probably a bug, please report it)
1354 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\&.
1356 <sha1> is shown as all 0\(cqs if a file is new on the filesystem and it is out of sync with the index\&.
1358 Example:
1360 .if n \{\
1361 .RS 4
1364 :100644 100644 5be4a4a 0000000 M file\&.c
1366 .if n \{\
1371 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\&.
1372 .SH "DIFF FORMAT FOR MERGES"
1374 "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:
1376 .RS 4
1377 .ie n \{\
1378 \h'-04' 1.\h'+01'\c
1380 .el \{\
1381 .sp -1
1382 .IP "  1." 4.2
1384 there is a colon for each parent
1387 .RS 4
1388 .ie n \{\
1389 \h'-04' 2.\h'+01'\c
1391 .el \{\
1392 .sp -1
1393 .IP "  2." 4.2
1395 there are more "src" modes and "src" sha1
1398 .RS 4
1399 .ie n \{\
1400 \h'-04' 3.\h'+01'\c
1402 .el \{\
1403 .sp -1
1404 .IP "  3." 4.2
1406 status is concatenated status characters for each parent
1409 .RS 4
1410 .ie n \{\
1411 \h'-04' 4.\h'+01'\c
1413 .el \{\
1414 .sp -1
1415 .IP "  4." 4.2
1417 no optional "score" number
1420 .RS 4
1421 .ie n \{\
1422 \h'-04' 5.\h'+01'\c
1424 .el \{\
1425 .sp -1
1426 .IP "  5." 4.2
1428 tab\-separated pathname(s) of the file
1431 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\&.
1433 Examples for \fB\-c\fR and \fB\-\-cc\fR without \fB\-\-combined\-all\-paths\fR:
1435 .if n \{\
1436 .RS 4
1439 ::100644 100644 100644 fabadb8 cc95eb0 4866510 MM       desc\&.c
1440 ::100755 100755 100755 52b7a2d 6d1ac04 d2ac7d7 RM       bar\&.sh
1441 ::100644 100644 100644 e07d6c5 9042e82 ee91881 RR       phooey\&.c
1443 .if n \{\
1448 Examples when \fB\-\-combined\-all\-paths\fR added to either \fB\-c\fR or \fB\-\-cc\fR:
1450 .if n \{\
1451 .RS 4
1454 ::100644 100644 100644 fabadb8 cc95eb0 4866510 MM       desc\&.c  desc\&.c  desc\&.c
1455 ::100755 100755 100755 52b7a2d 6d1ac04 d2ac7d7 RM       foo\&.sh  bar\&.sh  bar\&.sh
1456 ::100644 100644 100644 e07d6c5 9042e82 ee91881 RR       fooey\&.c fuey\&.c  phooey\&.c
1458 .if n \{\
1463 Note that \fIcombined diff\fR lists only files which were modified from all parents\&.
1464 .SH "GENERATING PATCH TEXT WITH \-P"
1466 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))\&.
1468 What the \-p option produces is slightly different from the traditional diff format:
1470 .RS 4
1471 .ie n \{\
1472 \h'-04' 1.\h'+01'\c
1474 .el \{\
1475 .sp -1
1476 .IP "  1." 4.2
1478 It is preceded with a "git diff" header that looks like this:
1480 .if n \{\
1481 .RS 4
1484 diff \-\-git a/file1 b/file2
1486 .if n \{\
1491 \fBa/\fR
1493 \fBb/\fR
1494 filenames are the same unless rename/copy is involved\&. Especially, even for a creation or a deletion,
1495 \fB/dev/null\fR
1497 \fInot\fR
1498 used in place of the
1499 \fBa/\fR
1501 \fBb/\fR
1502 filenames\&.
1504 When rename/copy is involved,
1505 \fBfile1\fR
1507 \fBfile2\fR
1508 show the name of the source file of the rename/copy and the name of the file that rename/copy produces, respectively\&.
1511 .RS 4
1512 .ie n \{\
1513 \h'-04' 2.\h'+01'\c
1515 .el \{\
1516 .sp -1
1517 .IP "  2." 4.2
1519 It is followed by one or more extended header lines:
1521 .if n \{\
1522 .RS 4
1525 old mode <mode>
1526 new mode <mode>
1527 deleted file mode <mode>
1528 new file mode <mode>
1529 copy from <path>
1530 copy to <path>
1531 rename from <path>
1532 rename to <path>
1533 similarity index <number>
1534 dissimilarity index <number>
1535 index <hash>\&.\&.<hash> <mode>
1537 .if n \{\
1541 File modes are printed as 6\-digit octal numbers including the file type and file permission bits\&.
1543 Path names in extended headers do not include the
1544 \fBa/\fR
1546 \fBb/\fR
1547 prefixes\&.
1549 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\&.
1551 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\&.
1554 .RS 4
1555 .ie n \{\
1556 \h'-04' 3.\h'+01'\c
1558 .el \{\
1559 .sp -1
1560 .IP "  3." 4.2
1562 Pathnames with "unusual" characters are quoted as explained for the configuration variable
1563 \fBcore\&.quotePath\fR
1564 (see
1565 \fBgit-config\fR(1))\&.
1568 .RS 4
1569 .ie n \{\
1570 \h'-04' 4.\h'+01'\c
1572 .el \{\
1573 .sp -1
1574 .IP "  4." 4.2
1576 All the
1577 \fBfile1\fR
1578 files in the output refer to files before the commit, and all the
1579 \fBfile2\fR
1580 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:
1582 .if n \{\
1583 .RS 4
1586 diff \-\-git a/a b/b
1587 rename from a
1588 rename to b
1589 diff \-\-git a/b b/a
1590 rename from b
1591 rename to a
1593 .if n \{\
1598 .RS 4
1599 .ie n \{\
1600 \h'-04' 5.\h'+01'\c
1602 .el \{\
1603 .sp -1
1604 .IP "  5." 4.2
1606 Hunk headers mention the name of the function to which the hunk applies\&. See "Defining a custom hunk\-header" in
1607 \fBgitattributes\fR(5)
1608 for details of how to tailor to this to specific languages\&.
1610 .SH "COMBINED DIFF FORMAT"
1612 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\&.
1614 A "combined diff" format looks like this:
1616 .if n \{\
1617 .RS 4
1620 diff \-\-combined describe\&.c
1621 index fabadb8,cc95eb0\&.\&.4866510
1622 \-\-\- a/describe\&.c
1623 +++ b/describe\&.c
1624 @@@ \-98,20 \-98,12 +98,20 @@@
1625         return (a_date > b_date) ? \-1 : (a_date == b_date) ? 0 : 1;
1626   }
1628 \- static void describe(char *arg)
1629  \-static void describe(struct commit *cmit, int last_one)
1630 ++static void describe(char *arg, int last_one)
1631   {
1632  +      unsigned char sha1[20];
1633  +      struct commit *cmit;
1634         struct commit_list *list;
1635         static int initialized = 0;
1636         struct commit_name *n;
1638  +      if (get_sha1(arg, sha1) < 0)
1639  +              usage(describe_usage);
1640  +      cmit = lookup_commit_reference(sha1);
1641  +      if (!cmit)
1642  +              usage(describe_usage);
1644         if (!initialized) {
1645                 initialized = 1;
1646                 for_each_ref(get_name);
1648 .if n \{\
1654 .RS 4
1655 .ie n \{\
1656 \h'-04' 1.\h'+01'\c
1658 .el \{\
1659 .sp -1
1660 .IP "  1." 4.2
1662 It is preceded with a "git diff" header, that looks like this (when the
1663 \fB\-c\fR
1664 option is used):
1666 .if n \{\
1667 .RS 4
1670 diff \-\-combined file
1672 .if n \{\
1676 or like this (when the
1677 \fB\-\-cc\fR
1678 option is used):
1680 .if n \{\
1681 .RS 4
1684 diff \-\-cc file
1686 .if n \{\
1691 .RS 4
1692 .ie n \{\
1693 \h'-04' 2.\h'+01'\c
1695 .el \{\
1696 .sp -1
1697 .IP "  2." 4.2
1699 It is followed by one or more extended header lines (this example shows a merge with two parents):
1701 .if n \{\
1702 .RS 4
1705 index <hash>,<hash>\&.\&.<hash>
1706 mode <mode>,<mode>\&.\&.<mode>
1707 new file mode <mode>
1708 deleted file mode <mode>,<mode>
1710 .if n \{\
1715 \fBmode <mode>,<mode>\&.\&.<mode>\fR
1716 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\&.
1719 .RS 4
1720 .ie n \{\
1721 \h'-04' 3.\h'+01'\c
1723 .el \{\
1724 .sp -1
1725 .IP "  3." 4.2
1727 It is followed by two\-line from\-file/to\-file header
1729 .if n \{\
1730 .RS 4
1733 \-\-\- a/file
1734 +++ b/file
1736 .if n \{\
1740 Similar to two\-line header for traditional
1741 \fIunified\fR
1742 diff format,
1743 \fB/dev/null\fR
1744 is used to signal created or deleted files\&.
1746 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
1748 .if n \{\
1749 .RS 4
1752 \-\-\- a/file
1753 \-\-\- a/file
1754 \-\-\- a/file
1755 +++ b/file
1757 .if n \{\
1761 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\&.
1764 .RS 4
1765 .ie n \{\
1766 \h'-04' 4.\h'+01'\c
1768 .el \{\
1769 .sp -1
1770 .IP "  4." 4.2
1772 Chunk header format is modified to prevent people from accidentally feeding it to
1773 \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
1774 \fIindex\fR
1775 header:
1777 .if n \{\
1778 .RS 4
1781 @@@ <from\-file\-range> <from\-file\-range> <to\-file\-range> @@@
1783 .if n \{\
1787 There are (number of parents + 1)
1788 \fB@\fR
1789 characters in the chunk header for combined diff format\&.
1792 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\&.
1794 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)\&.
1796 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)\&.
1798 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")\&.
1799 .SH "OTHER DIFF FORMATS"
1801 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\&.
1803 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:
1805 .if n \{\
1806 .RS 4
1809 arch/{i386 => x86}/Makefile    |   4 +\-\-
1811 .if n \{\
1816 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:
1818 .if n \{\
1819 .RS 4
1822 1       2       README
1823 3       1       arch/{i386 => x86}/Makefile
1825 .if n \{\
1830 That is, from left to right:
1832 .RS 4
1833 .ie n \{\
1834 \h'-04' 1.\h'+01'\c
1836 .el \{\
1837 .sp -1
1838 .IP "  1." 4.2
1840 the number of added lines;
1843 .RS 4
1844 .ie n \{\
1845 \h'-04' 2.\h'+01'\c
1847 .el \{\
1848 .sp -1
1849 .IP "  2." 4.2
1851 a tab;
1854 .RS 4
1855 .ie n \{\
1856 \h'-04' 3.\h'+01'\c
1858 .el \{\
1859 .sp -1
1860 .IP "  3." 4.2
1862 the number of deleted lines;
1865 .RS 4
1866 .ie n \{\
1867 \h'-04' 4.\h'+01'\c
1869 .el \{\
1870 .sp -1
1871 .IP "  4." 4.2
1873 a tab;
1876 .RS 4
1877 .ie n \{\
1878 \h'-04' 5.\h'+01'\c
1880 .el \{\
1881 .sp -1
1882 .IP "  5." 4.2
1884 pathname (possibly with rename/copy information);
1887 .RS 4
1888 .ie n \{\
1889 \h'-04' 6.\h'+01'\c
1891 .el \{\
1892 .sp -1
1893 .IP "  6." 4.2
1895 a newline\&.
1898 When \fB\-z\fR output option is in effect, the output is formatted this way:
1900 .if n \{\
1901 .RS 4
1904 1       2       README NUL
1905 3       1       NUL arch/i386/Makefile NUL arch/x86/Makefile NUL
1907 .if n \{\
1912 That is:
1914 .RS 4
1915 .ie n \{\
1916 \h'-04' 1.\h'+01'\c
1918 .el \{\
1919 .sp -1
1920 .IP "  1." 4.2
1922 the number of added lines;
1925 .RS 4
1926 .ie n \{\
1927 \h'-04' 2.\h'+01'\c
1929 .el \{\
1930 .sp -1
1931 .IP "  2." 4.2
1933 a tab;
1936 .RS 4
1937 .ie n \{\
1938 \h'-04' 3.\h'+01'\c
1940 .el \{\
1941 .sp -1
1942 .IP "  3." 4.2
1944 the number of deleted lines;
1947 .RS 4
1948 .ie n \{\
1949 \h'-04' 4.\h'+01'\c
1951 .el \{\
1952 .sp -1
1953 .IP "  4." 4.2
1955 a tab;
1958 .RS 4
1959 .ie n \{\
1960 \h'-04' 5.\h'+01'\c
1962 .el \{\
1963 .sp -1
1964 .IP "  5." 4.2
1966 a NUL (only exists if renamed/copied);
1969 .RS 4
1970 .ie n \{\
1971 \h'-04' 6.\h'+01'\c
1973 .el \{\
1974 .sp -1
1975 .IP "  6." 4.2
1977 pathname in preimage;
1980 .RS 4
1981 .ie n \{\
1982 \h'-04' 7.\h'+01'\c
1984 .el \{\
1985 .sp -1
1986 .IP "  7." 4.2
1988 a NUL (only exists if renamed/copied);
1991 .RS 4
1992 .ie n \{\
1993 \h'-04' 8.\h'+01'\c
1995 .el \{\
1996 .sp -1
1997 .IP "  8." 4.2
1999 pathname in postimage (only exists if renamed/copied);
2002 .RS 4
2003 .ie n \{\
2004 \h'-04' 9.\h'+01'\c
2006 .el \{\
2007 .sp -1
2008 .IP "  9." 4.2
2010 a NUL\&.
2013 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\&.
2014 .SH "EXAMPLES"
2016 Various ways to check your working tree
2017 .RS 4
2019 .if n \{\
2020 .RS 4
2023 $ git diff            \fB(1)\fR
2024 $ git diff \-\-cached   \fB(2)\fR
2025 $ git diff HEAD       \fB(3)\fR
2027 .if n \{\
2031 \fB1. \fRChanges in the working tree not yet staged for the next commit\&.
2033 \fB2. \fRChanges between the index and your last commit; what you would be committing if you run
2034 \fBgit commit\fR
2035 without
2036 \fB\-a\fR
2037 option\&.
2039 \fB3. \fRChanges in the working tree since your last commit; what you would be committing if you run
2040 \fBgit commit \-a\fR
2044 Comparing with arbitrary commits
2045 .RS 4
2047 .if n \{\
2048 .RS 4
2051 $ git diff test            \fB(1)\fR
2052 $ git diff HEAD \-\- \&./test  \fB(2)\fR
2053 $ git diff HEAD^ HEAD      \fB(3)\fR
2055 .if n \{\
2059 \fB1. \fRInstead of using the tip of the current branch, compare with the tip of "test" branch\&.
2061 \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"\&.
2063 \fB3. \fRCompare the version before the last commit and the last commit\&.
2067 Comparing branches
2068 .RS 4
2070 .if n \{\
2071 .RS 4
2074 $ git diff topic master    \fB(1)\fR
2075 $ git diff topic\&.\&.master   \fB(2)\fR
2076 $ git diff topic\&.\&.\&.master  \fB(3)\fR
2078 .if n \{\
2082 \fB1. \fRChanges between the tips of the topic and the master branches\&.
2084 \fB2. \fRSame as above\&.
2086 \fB3. \fRChanges that occurred on the master branch since when the topic branch was started off it\&.
2090 Limiting the diff output
2091 .RS 4
2093 .if n \{\
2094 .RS 4
2097 $ git diff \-\-diff\-filter=MRC            \fB(1)\fR
2098 $ git diff \-\-name\-status                \fB(2)\fR
2099 $ git diff arch/i386 include/asm\-i386   \fB(3)\fR
2101 .if n \{\
2105 \fB1. \fRShow only modification, rename, and copy, but not addition or deletion\&.
2107 \fB2. \fRShow only names and the nature of change, but not actual diff output\&.
2109 \fB3. \fRLimit diff output to named subtrees\&.
2113 Munging the diff output
2114 .RS 4
2116 .if n \{\
2117 .RS 4
2120 $ git diff \-\-find\-copies\-harder \-B \-C  \fB(1)\fR
2121 $ git diff \-R                          \fB(2)\fR
2123 .if n \{\
2127 \fB1. \fRSpend extra cycles to find renames, copies and complete rewrites (very expensive)\&.
2129 \fB2. \fROutput diff in reverse\&.
2132 .SH "SEE ALSO"
2134 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)
2135 .SH "GIT"
2137 Part of the \fBgit\fR(1) suite