]> git.ipfire.org Git - thirdparty/git.git/blame - Documentation/diff-options.txt
Merge branch 'kk/maint-prefix-in-config-mak'
[thirdparty/git.git] / Documentation / diff-options.txt
CommitLineData
c1a95fa6
SO
1// Please don't remove this comment as asciidoc behaves badly when
2// the first non-empty line is ifdef/ifndef. The symptom is that
3// without this comment the <git-diff-core> attribute conditionally
4// defined below ends up being defined unconditionally.
5// Last checked with asciidoc 7.0.2.
6
7ifndef::git-format-patch[]
8ifndef::git-diff[]
272bd3cf 9ifndef::git-log[]
c1a95fa6 10:git-diff-core: 1
272bd3cf 11endif::git-log[]
c1a95fa6
SO
12endif::git-diff[]
13endif::git-format-patch[]
14
15ifdef::git-format-patch[]
16-p::
2cfa8330 17--no-stat::
02bc5b03 18 Generate plain patches without any diffstats.
c1a95fa6
SO
19endif::git-format-patch[]
20
21ifndef::git-format-patch[]
dda2d79a 22-p::
a9e67c8c 23-u::
1c9eecff 24--patch::
c1a95fa6
SO
25 Generate patch (see section on generating patches).
26 {git-diff? This is the default.}
27endif::git-format-patch[]
dda2d79a 28
4eb99473 29-U<n>::
4eb99473
RR
30--unified=<n>::
31 Generate diffs with <n> lines of context instead of
02bc5b03
BG
32 the usual three.
33ifndef::git-format-patch[]
dce5ef14 34 Implies `-p`.
02bc5b03 35endif::git-format-patch[]
4eb99473 36
d4cb003f 37ifndef::git-format-patch[]
b5376648
JH
38--raw::
39 Generate the raw format.
c1a95fa6 40 {git-diff-core? This is the default.}
d4cb003f 41endif::git-format-patch[]
b5376648 42
02bc5b03 43ifndef::git-format-patch[]
5c91da25 44--patch-with-raw::
dce5ef14 45 Synonym for `-p --raw`.
02bc5b03 46endif::git-format-patch[]
5c91da25 47
ec74042d 48--patience::
34292bdd
JS
49 Generate a diff using the "patience diff" algorithm.
50
62b4698e 51--stat[=<width>[,<name-width>]]::
5c5b2ea9 52 Generate a diffstat. You can override the default
62b4698e 53 output width for 80-column terminal by `--stat=<width>`.
5c5b2ea9
LT
54 The width of the filename part can be controlled by
55 giving another width to it separated by a comma.
d75f7952 56
74e2abe5 57--numstat::
dce5ef14 58 Similar to `\--stat`, but shows number of added and
74e2abe5 59 deleted lines in decimal notation and pathname without
2f89543e
JH
60 abbreviation, to make it more machine friendly. For
61 binary files, outputs two `-` instead of saying
62 `0 0`.
74e2abe5 63
ebd124c6 64--shortstat::
dce5ef14 65 Output only the last line of the `--stat` format containing total
ebd124c6
NP
66 number of modified files, as well as number of added and deleted
67 lines.
68
333f3fb0
JH
69--dirstat[=<param1,param2,...>]::
70 Output the distribution of relative amount of changes for each
71 sub-directory. The behavior of `--dirstat` can be customized by
72 passing it a comma separated list of parameters.
2d174951
JH
73 The defaults are controlled by the `diff.dirstat` configuration
74 variable (see linkgit:git-config[1]).
333f3fb0 75 The following parameters are available:
204f01a2 76+
333f3fb0
JH
77--
78`changes`;;
79 Compute the dirstat numbers by counting the lines that have been
80 removed from the source, or added to the destination. This ignores
81 the amount of pure code movements within a file. In other words,
82 rearranging lines in a file is not counted as much as other changes.
83 This is the default behavior when no parameter is given.
1c57a627
JH
84`lines`;;
85 Compute the dirstat numbers by doing the regular line-based diff
86 analysis, and summing the removed/added line counts. (For binary
87 files, count 64-byte chunks instead, since binary files have no
88 natural concept of lines). This is a more expensive `--dirstat`
89 behavior than the `changes` behavior, but it does count rearranged
90 lines within a file as much as other changes. The resulting output
91 is consistent with what you get from the other `--*stat` options.
333f3fb0
JH
92`files`;;
93 Compute the dirstat numbers by counting the number of files changed.
94 Each changed file counts equally in the dirstat analysis. This is
95 the computationally cheapest `--dirstat` behavior, since it does
96 not have to look at the file contents at all.
97`cumulative`;;
98 Count changes in a child directory for the parent directory as well.
99 Note that when using `cumulative`, the sum of the percentages
100 reported may exceed 100%. The default (non-cumulative) behavior can
101 be specified with the `noncumulative` parameter.
102<limit>;;
103 An integer parameter specifies a cut-off percent (3% by default).
104 Directories contributing less than this percentage of the changes
105 are not shown in the output.
106--
107+
108Example: The following will count changed files, while ignoring
109directories with less than 10% of the total amount of changed files,
110and accumulating child directory counts in the parent directories:
111`--dirstat=files,10,cumulative`.
fd33777b 112
4bbd261b
SE
113--summary::
114 Output a condensed summary of extended header information
115 such as creations, renames and mode changes.
116
02bc5b03 117ifndef::git-format-patch[]
29353273 118--patch-with-stat::
dce5ef14 119 Synonym for `-p --stat`.
02bc5b03 120endif::git-format-patch[]
29353273 121
d4cb003f 122ifndef::git-format-patch[]
64485b4a 123
dda2d79a 124-z::
5c931c8d
BG
125ifdef::git-log[]
126 Separate the commits with NULs instead of with new newlines.
127+
128Also, when `--raw` or `--numstat` has been given, do not munge
129pathnames and use NULs as output field terminators.
130endif::git-log[]
64485b4a 131ifndef::git-log[]
03aa87ed
CB
132 When `--raw`, `--numstat`, `--name-only` or `--name-status` has been
133 given, do not munge pathnames and use NULs as output field terminators.
5c931c8d 134endif::git-log[]
64485b4a
BG
135+
136Without this option, each pathname output will have TAB, LF, double quotes,
137and backslash characters replaced with `\t`, `\n`, `\"`, and `\\`,
138respectively, and the pathname will be enclosed in double quotes if
139any of those replacements occurred.
dda2d79a
JH
140
141--name-only::
142 Show only names of changed files.
143
946f5f7c 144--name-status::
a6f47b2b
MV
145 Show only names and status of changed files. See the description
146 of the `--diff-filter` option on what the status letters mean.
dda2d79a 147
752c0c24
JS
148--submodule[=<format>]::
149 Chose the output format for submodule differences. <format> can be one of
150 'short' and 'log'. 'short' just shows pairs of commit names, this format
151 is used when this option is not given. 'log' is the default value for this
152 option and lists the commits in that commit range like the 'summary'
153 option of linkgit:git-submodule[1] does.
154
73e9da01 155--color[=<when>]::
b5376648 156 Show colored diff.
6999c540
MG
157 The value must be `always` (the default for `<when>`), `never`, or `auto`.
158 The default value is `never`.
159ifdef::git-diff[]
160 It can be changed by the `color.ui` and `color.diff`
161 configuration settings.
162endif::git-diff[]
b5376648
JH
163
164--no-color::
6999c540
MG
165 Turn off colored diff.
166ifdef::git-diff[]
167 This can be used to override configuration settings.
168endif::git-diff[]
169 It is the same as `--color=never`.
b5376648 170
882749a0
TR
171--word-diff[=<mode>]::
172 Show a word diff, using the <mode> to delimit changed words.
173 By default, words are delimited by whitespace; see
174 `--word-diff-regex` below. The <mode> defaults to 'plain', and
175 must be one of:
176+
177--
178color::
179 Highlight changed words using only colors. Implies `--color`.
180plain::
181 Show words as `[-removed-]` and `{+added+}`. Makes no
182 attempts to escape the delimiters if they appear in the input,
183 so the output may be ambiguous.
184porcelain::
185 Use a special line-based format intended for script
186 consumption. Added/removed/unchanged runs are printed in the
187 usual unified diff format, starting with a `+`/`-`/` `
188 character at the beginning of the line and extending to the
189 end of the line. Newlines in the input are represented by a
190 tilde `~` on a line of its own.
191none::
192 Disable word diff again.
193--
194+
195Note that despite the name of the first mode, color is used to
196highlight the changed parts in all modes if enabled.
197
198--word-diff-regex=<regex>::
199 Use <regex> to decide what a word is, instead of considering
200 runs of non-whitespace to be a word. Also implies
201 `--word-diff` unless it was already enabled.
2b6a5417 202+
882749a0 203Every non-overlapping match of the
c4b252c3
TR
204<regex> is considered a word. Anything between these matches is
205considered whitespace and ignored(!) for the purposes of finding
206differences. You may want to append `|[^[:space:]]` to your regular
207expression to make sure that it matches all non-whitespace characters.
208A match that contains a newline is silently truncated(!) at the
209newline.
80c49c3d 210+
98a4d87b
BSSJ
211The regex can also be set via a diff driver or configuration option, see
212linkgit:gitattributes[1] or linkgit:git-config[1]. Giving it explicitly
213overrides any diff driver or configuration setting. Diff drivers
214override configuration settings.
882749a0
TR
215
216--color-words[=<regex>]::
217 Equivalent to `--word-diff=color` plus (if a regex was
218 specified) `--word-diff-regex=<regex>`.
d4cb003f 219endif::git-format-patch[]
f59a59e2 220
b5376648
JH
221--no-renames::
222 Turn off rename detection, even when the configuration
223 file gives the default to do so.
224
02bc5b03 225ifndef::git-format-patch[]
16507fcf
BL
226--check::
227 Warn if changes introduce trailing whitespace
62c64895
WC
228 or an indent that uses a space before a tab. Exits with
229 non-zero status if problems are found. Not compatible with
230 --exit-code.
02bc5b03 231endif::git-format-patch[]
16507fcf 232
80b1e511 233--full-index::
6457e58c
JM
234 Instead of the first handful of characters, show the full
235 pre- and post-image blob object names on the "index"
236 line when generating patch format output.
b5376648
JH
237
238--binary::
dce5ef14
BG
239 In addition to `--full-index`, output a binary diff that
240 can be applied with `git-apply`.
80b1e511 241
913419fc 242--abbrev[=<n>]::
47dd0d59
JH
243 Instead of showing the full 40-byte hexadecimal object
244 name in diff-raw format output and diff-tree header
323b9db8 245 lines, show only a partial prefix. This is
dce5ef14 246 independent of the `--full-index` option above, which controls
913419fc 247 the diff-patch output format. Non default number of
dce5ef14 248 digits can be specified with `--abbrev=<n>`.
47dd0d59 249
cf958afd 250-B[<n>][/<m>]::
37ab5156 251--break-rewrites[=[<n>][/<m>]]::
cf958afd
MM
252 Break complete rewrite changes into pairs of delete and
253 create. This serves two purposes:
254+
255It affects the way a change that amounts to a total rewrite of a file
256not as a series of deletion and insertion mixed together with a very
257few lines that happen to match textually as the context, but as a
258single deletion of everything old followed by a single insertion of
259everything new, and the number `m` controls this aspect of the -B
260option (defaults to 60%). `-B/70%` specifies that less than 30% of the
261original should remain in the result for git to consider it a total
262rewrite (i.e. otherwise the resulting patch will be a series of
263deletion and insertion mixed together with context lines).
264+
265When used with -M, a totally-rewritten file is also considered as the
266source of a rename (usually -M only considers a file that disappeared
267as the source of a rename), and the number `n` controls this aspect of
268the -B option (defaults to 50%). `-B20%` specifies that a change with
269addition and deletion compared to 20% or more of the file's size are
270eligible for being picked up as a possible source of a rename to
271another file.
272
273-M[<n>]::
f611ddc7 274--find-renames[=<n>]::
7ffad250 275ifndef::git-log[]
dda2d79a 276 Detect renames.
7ffad250
JK
277endif::git-log[]
278ifdef::git-log[]
279 If generating diffs, detect and report renames for each commit.
280 For following files across renames while traversing history, see
281 `--follow`.
282endif::git-log[]
4c007ae8 283 If `n` is specified, it is a threshold on the similarity
cf958afd
MM
284 index (i.e. amount of addition/deletions compared to the
285 file's size). For example, `-M90%` means git should consider a
286 delete/add pair to be a rename if more than 90% of the file
287 hasn't changed.
dda2d79a 288
cf958afd 289-C[<n>]::
f611ddc7 290--find-copies[=<n>]::
ca6c0970 291 Detect copies as well as renames. See also `--find-copies-harder`.
cf958afd 292 If `n` is specified, it has the same meaning as for `-M<n>`.
dda2d79a
JH
293
294--find-copies-harder::
ca6c0970 295 For performance reasons, by default, `-C` option finds copies only
a6080a0a 296 if the original file of the copy was modified in the same
f73ae1fc 297 changeset. This flag makes the command
dda2d79a
JH
298 inspect unmodified files as candidates for the source of
299 copy. This is a very expensive operation for large
ca6c0970
JS
300 projects, so use it with caution. Giving more than one
301 `-C` option has the same effect.
dda2d79a 302
467ddc14
JH
303-D::
304--irreversible-delete::
305 Omit the preimage for deletes, i.e. print only the header but not
306 the diff between the preimage and `/dev/null`. The resulting patch
307 is not meant to be applied with `patch` nor `git apply`; this is
308 solely for people who want to just concentrate on reviewing the
309 text after the change. In addition, the output obviously lack
310 enough information to apply such a patch in reverse, even manually,
311 hence the name of the option.
312+
313When used together with `-B`, omit also the preimage in the deletion part
314of a delete/create pair.
315
8082d8d3 316-l<num>::
dce5ef14 317 The `-M` and `-C` options require O(n^2) processing time where n
f73ae1fc 318 is the number of potential rename/copy targets. This
8082d8d3 319 option prevents rename/copy detection from running if
f73ae1fc 320 the number of rename/copy targets exceeds the specified
8082d8d3
JH
321 number.
322
d4cb003f 323ifndef::git-format-patch[]
f1037448
YD
324--diff-filter=[(A|C|D|M|R|T|U|X|B)...[*]]::
325 Select only files that are Added (`A`), Copied (`C`),
326 Deleted (`D`), Modified (`M`), Renamed (`R`), have their
327 type (i.e. regular file, symlink, submodule, ...) changed (`T`),
328 are Unmerged (`U`), are
329 Unknown (`X`), or have had their pairing Broken (`B`).
330 Any combination of the filter characters (including none) can be used.
331 When `*` (All-or-none) is added to the combination, all
332 paths are selected if there is any file that matches
333 other criteria in the comparison; if there is no file
334 that matches other criteria, nothing is selected.
335
dda2d79a 336-S<string>::
821d56aa
JK
337 Look for differences that introduce or remove an instance of
338 <string>. Note that this is different than the string simply
339 appearing in diff output; see the 'pickaxe' entry in
340 linkgit:gitdiffcore[7] for more details.
dda2d79a 341
f506b8e8
JH
342-G<regex>::
343 Look for differences whose added or removed line matches
344 the given <regex>.
345
dda2d79a 346--pickaxe-all::
f506b8e8 347 When `-S` or `-G` finds a change, show all the changes in that
f73ae1fc 348 changeset, not just the files that contain the change
dda2d79a
JH
349 in <string>.
350
d01d8c67
PB
351--pickaxe-regex::
352 Make the <string> not a plain string but an extended POSIX
353 regex to match.
d4cb003f 354endif::git-format-patch[]
d01d8c67 355
dda2d79a
JH
356-O<orderfile>::
357 Output the patch in the order specified in the
358 <orderfile>, which has one shell glob pattern per line.
359
d4cb003f 360ifndef::git-format-patch[]
dda2d79a 361-R::
5f3aa197 362 Swap two inputs; that is, show differences from index or
dda2d79a
JH
363 on-disk file to tree contents.
364
c0cb4a06 365--relative[=<path>]::
cd676a51
JH
366 When run from a subdirectory of the project, it can be
367 told to exclude changes outside the directory and show
c0cb4a06
JH
368 pathnames relative to it with this option. When you are
369 not in a subdirectory (e.g. in a bare repository), you
370 can name which subdirectory to make the output relative
371 to by giving a <path> as an argument.
d4cb003f 372endif::git-format-patch[]
cd676a51 373
a9e67c8c 374-a::
d507bb15
SF
375--text::
376 Treat all files as text.
377
a44a0c99 378--ignore-space-at-eol::
0ac7903e 379 Ignore changes in whitespace at EOL.
a44a0c99 380
a9e67c8c 381-b::
8ebe185b 382--ignore-space-change::
0ac7903e
WC
383 Ignore changes in amount of whitespace. This ignores whitespace
384 at line end, and considers all other sequences of one or
385 more whitespace characters to be equivalent.
8ebe185b 386
a9e67c8c 387-w::
8ebe185b 388--ignore-all-space::
0ac7903e
WC
389 Ignore whitespace when comparing lines. This ignores
390 differences even if one line has whitespace where the other
8ebe185b
JN
391 line has none.
392
6d0e674a
RS
393--inter-hunk-context=<lines>::
394 Show the context between diff hunks, up to the specified number
395 of lines, thereby fusing hunks that are close to each other.
396
d4cb003f 397ifndef::git-format-patch[]
41bbf9d5
AR
398--exit-code::
399 Make the program exit with codes similar to diff(1).
400 That is, it exits with 1 if there were differences and
401 0 means no differences.
402
2a18c266 403--quiet::
dce5ef14 404 Disable all output of the program. Implies `--exit-code`.
d4cb003f 405endif::git-format-patch[]
2a18c266 406
72909bef
JS
407--ext-diff::
408 Allow an external diff helper to be executed. If you set an
5162e697
DM
409 external diff driver with linkgit:gitattributes[5], you need
410 to use this option with linkgit:git-log[1] and friends.
72909bef
JS
411
412--no-ext-diff::
413 Disallow external diff drivers.
414
dd44d419
JL
415--ignore-submodules[=<when>]::
416 Ignore changes to submodules in the diff generation. <when> can be
aee9c7d6
JL
417 either "none", "untracked", "dirty" or "all", which is the default
418 Using "none" will consider the submodule modified when it either contains
419 untracked or modified files or its HEAD differs from the commit recorded
420 in the superproject and can be used to override any settings of the
302ad7a9 421 'ignore' option in linkgit:git-config[1] or linkgit:gitmodules[5]. When
dd44d419
JL
422 "untracked" is used submodules are not considered dirty when they only
423 contain untracked content (but they are still scanned for modified
424 content). Using "dirty" ignores all changes to the work tree of submodules,
425 only changes to the commits stored in the superproject are shown (this was
426 the behavior until 1.7.0). Using "all" hides all changes to submodules.
50fd9bd8 427
eab9a40b
JS
428--src-prefix=<prefix>::
429 Show the given source prefix instead of "a/".
430
431--dst-prefix=<prefix>::
432 Show the given destination prefix instead of "b/".
433
434--no-prefix::
435 Do not show any source or destination prefix.
436
8db9307c 437For more detailed explanation on these common options, see also
6998e4db 438linkgit:gitdiffcore[7].