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.
7 ifndef::git-format-patch[]
13 endif::git-format-patch[]
15 ifdef::git-format-patch[]
18 Generate plain patches without any diffstats.
19 endif::git-format-patch[]
21 ifndef::git-format-patch[]
25 Generate patch (see section on generating patches).
26 {git-diff? This is the default.}
27 endif::git-format-patch[]
31 Generate diffs with <n> lines of context instead of
33 ifndef::git-format-patch[]
35 endif::git-format-patch[]
37 ifndef::git-format-patch[]
39 Generate the raw format.
40 {git-diff-core? This is the default.}
41 endif::git-format-patch[]
43 ifndef::git-format-patch[]
45 Synonym for `-p --raw`.
46 endif::git-format-patch[]
49 Generate a diff using the "patience diff" algorithm.
51 --stat[=<width>[,<name-width>]]::
52 Generate a diffstat. You can override the default
53 output width for 80-column terminal by `--stat=<width>`.
54 The width of the filename part can be controlled by
55 giving another width to it separated by a comma.
58 Similar to `\--stat`, but shows number of added and
59 deleted lines in decimal notation and pathname without
60 abbreviation, to make it more machine friendly. For
61 binary files, outputs two `-` instead of saying
65 Output only the last line of the `--stat` format containing total
66 number of modified files, as well as number of added and deleted
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.
73 The defaults are controlled by the `diff.dirstat` configuration
74 variable (see linkgit:git-config[1]).
75 The following parameters are available:
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.
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.
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.
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.
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.
108 Example: The following will count changed files, while ignoring
109 directories with less than 10% of the total amount of changed files,
110 and accumulating child directory counts in the parent directories:
111 `--dirstat=files,10,cumulative`.
114 Output a condensed summary of extended header information
115 such as creations, renames and mode changes.
117 ifndef::git-format-patch[]
119 Synonym for `-p --stat`.
120 endif::git-format-patch[]
122 ifndef::git-format-patch[]
126 Separate the commits with NULs instead of with new newlines.
128 Also, when `--raw` or `--numstat` has been given, do not munge
129 pathnames and use NULs as output field terminators.
132 When `--raw`, `--numstat`, `--name-only` or `--name-status` has been
133 given, do not munge pathnames and use NULs as output field terminators.
136 Without this option, each pathname output will have TAB, LF, double quotes,
137 and backslash characters replaced with `\t`, `\n`, `\"`, and `\\`,
138 respectively, and the pathname will be enclosed in double quotes if
139 any of those replacements occurred.
142 Show only names of changed files.
145 Show only names and status of changed files. See the description
146 of the `--diff-filter` option on what the status letters mean.
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.
157 The value must be always (the default), never, or auto.
160 Turn off colored diff, even when the configuration file
161 gives the default to color output.
162 Same as `--color=never`.
164 --word-diff[=<mode>]::
165 Show a word diff, using the <mode> to delimit changed words.
166 By default, words are delimited by whitespace; see
167 `--word-diff-regex` below. The <mode> defaults to 'plain', and
172 Highlight changed words using only colors. Implies `--color`.
174 Show words as `[-removed-]` and `{+added+}`. Makes no
175 attempts to escape the delimiters if they appear in the input,
176 so the output may be ambiguous.
178 Use a special line-based format intended for script
179 consumption. Added/removed/unchanged runs are printed in the
180 usual unified diff format, starting with a `+`/`-`/` `
181 character at the beginning of the line and extending to the
182 end of the line. Newlines in the input are represented by a
183 tilde `~` on a line of its own.
185 Disable word diff again.
188 Note that despite the name of the first mode, color is used to
189 highlight the changed parts in all modes if enabled.
191 --word-diff-regex=<regex>::
192 Use <regex> to decide what a word is, instead of considering
193 runs of non-whitespace to be a word. Also implies
194 `--word-diff` unless it was already enabled.
196 Every non-overlapping match of the
197 <regex> is considered a word. Anything between these matches is
198 considered whitespace and ignored(!) for the purposes of finding
199 differences. You may want to append `|[^[:space:]]` to your regular
200 expression to make sure that it matches all non-whitespace characters.
201 A match that contains a newline is silently truncated(!) at the
204 The regex can also be set via a diff driver or configuration option, see
205 linkgit:gitattributes[1] or linkgit:git-config[1]. Giving it explicitly
206 overrides any diff driver or configuration setting. Diff drivers
207 override configuration settings.
209 --color-words[=<regex>]::
210 Equivalent to `--word-diff=color` plus (if a regex was
211 specified) `--word-diff-regex=<regex>`.
212 endif::git-format-patch[]
215 Turn off rename detection, even when the configuration
216 file gives the default to do so.
218 ifndef::git-format-patch[]
220 Warn if changes introduce trailing whitespace
221 or an indent that uses a space before a tab. Exits with
222 non-zero status if problems are found. Not compatible with
224 endif::git-format-patch[]
227 Instead of the first handful of characters, show the full
228 pre- and post-image blob object names on the "index"
229 line when generating patch format output.
232 In addition to `--full-index`, output a binary diff that
233 can be applied with `git-apply`.
236 Instead of showing the full 40-byte hexadecimal object
237 name in diff-raw format output and diff-tree header
238 lines, show only a partial prefix. This is
239 independent of the `--full-index` option above, which controls
240 the diff-patch output format. Non default number of
241 digits can be specified with `--abbrev=<n>`.
244 --break-rewrites[=[<n>][/<m>]]::
245 Break complete rewrite changes into pairs of delete and
246 create. This serves two purposes:
248 It affects the way a change that amounts to a total rewrite of a file
249 not as a series of deletion and insertion mixed together with a very
250 few lines that happen to match textually as the context, but as a
251 single deletion of everything old followed by a single insertion of
252 everything new, and the number `m` controls this aspect of the -B
253 option (defaults to 60%). `-B/70%` specifies that less than 30% of the
254 original should remain in the result for git to consider it a total
255 rewrite (i.e. otherwise the resulting patch will be a series of
256 deletion and insertion mixed together with context lines).
258 When used with -M, a totally-rewritten file is also considered as the
259 source of a rename (usually -M only considers a file that disappeared
260 as the source of a rename), and the number `n` controls this aspect of
261 the -B option (defaults to 50%). `-B20%` specifies that a change with
262 addition and deletion compared to 20% or more of the file's size are
263 eligible for being picked up as a possible source of a rename to
267 --find-renames[=<n>]::
272 If generating diffs, detect and report renames for each commit.
273 For following files across renames while traversing history, see
276 If `n` is specified, it is a is a threshold on the similarity
277 index (i.e. amount of addition/deletions compared to the
278 file's size). For example, `-M90%` means git should consider a
279 delete/add pair to be a rename if more than 90% of the file
283 --find-copies[=<n>]::
284 Detect copies as well as renames. See also `--find-copies-harder`.
285 If `n` is specified, it has the same meaning as for `-M<n>`.
287 --find-copies-harder::
288 For performance reasons, by default, `-C` option finds copies only
289 if the original file of the copy was modified in the same
290 changeset. This flag makes the command
291 inspect unmodified files as candidates for the source of
292 copy. This is a very expensive operation for large
293 projects, so use it with caution. Giving more than one
294 `-C` option has the same effect.
297 --irreversible-delete::
298 Omit the preimage for deletes, i.e. print only the header but not
299 the diff between the preimage and `/dev/null`. The resulting patch
300 is not meant to be applied with `patch` nor `git apply`; this is
301 solely for people who want to just concentrate on reviewing the
302 text after the change. In addition, the output obviously lack
303 enough information to apply such a patch in reverse, even manually,
304 hence the name of the option.
306 When used together with `-B`, omit also the preimage in the deletion part
307 of a delete/create pair.
310 The `-M` and `-C` options require O(n^2) processing time where n
311 is the number of potential rename/copy targets. This
312 option prevents rename/copy detection from running if
313 the number of rename/copy targets exceeds the specified
316 ifndef::git-format-patch[]
317 --diff-filter=[(A|C|D|M|R|T|U|X|B)...[*]]::
318 Select only files that are Added (`A`), Copied (`C`),
319 Deleted (`D`), Modified (`M`), Renamed (`R`), have their
320 type (i.e. regular file, symlink, submodule, ...) changed (`T`),
321 are Unmerged (`U`), are
322 Unknown (`X`), or have had their pairing Broken (`B`).
323 Any combination of the filter characters (including none) can be used.
324 When `*` (All-or-none) is added to the combination, all
325 paths are selected if there is any file that matches
326 other criteria in the comparison; if there is no file
327 that matches other criteria, nothing is selected.
330 Look for differences that introduce or remove an instance of
331 <string>. Note that this is different than the string simply
332 appearing in diff output; see the 'pickaxe' entry in
333 linkgit:gitdiffcore[7] for more details.
336 Look for differences whose added or removed line matches
340 When `-S` or `-G` finds a change, show all the changes in that
341 changeset, not just the files that contain the change
345 Make the <string> not a plain string but an extended POSIX
347 endif::git-format-patch[]
350 Output the patch in the order specified in the
351 <orderfile>, which has one shell glob pattern per line.
353 ifndef::git-format-patch[]
355 Swap two inputs; that is, show differences from index or
356 on-disk file to tree contents.
358 --relative[=<path>]::
359 When run from a subdirectory of the project, it can be
360 told to exclude changes outside the directory and show
361 pathnames relative to it with this option. When you are
362 not in a subdirectory (e.g. in a bare repository), you
363 can name which subdirectory to make the output relative
364 to by giving a <path> as an argument.
365 endif::git-format-patch[]
369 Treat all files as text.
371 --ignore-space-at-eol::
372 Ignore changes in whitespace at EOL.
375 --ignore-space-change::
376 Ignore changes in amount of whitespace. This ignores whitespace
377 at line end, and considers all other sequences of one or
378 more whitespace characters to be equivalent.
382 Ignore whitespace when comparing lines. This ignores
383 differences even if one line has whitespace where the other
386 --inter-hunk-context=<lines>::
387 Show the context between diff hunks, up to the specified number
388 of lines, thereby fusing hunks that are close to each other.
390 ifndef::git-format-patch[]
392 Make the program exit with codes similar to diff(1).
393 That is, it exits with 1 if there were differences and
394 0 means no differences.
397 Disable all output of the program. Implies `--exit-code`.
398 endif::git-format-patch[]
401 Allow an external diff helper to be executed. If you set an
402 external diff driver with linkgit:gitattributes[5], you need
403 to use this option with linkgit:git-log[1] and friends.
406 Disallow external diff drivers.
408 --ignore-submodules[=<when>]::
409 Ignore changes to submodules in the diff generation. <when> can be
410 either "none", "untracked", "dirty" or "all", which is the default
411 Using "none" will consider the submodule modified when it either contains
412 untracked or modified files or its HEAD differs from the commit recorded
413 in the superproject and can be used to override any settings of the
414 'ignore' option in linkgit:git-config[1] or linkgit:gitmodules[5]. When
415 "untracked" is used submodules are not considered dirty when they only
416 contain untracked content (but they are still scanned for modified
417 content). Using "dirty" ignores all changes to the work tree of submodules,
418 only changes to the commits stored in the superproject are shown (this was
419 the behavior until 1.7.0). Using "all" hides all changes to submodules.
421 --src-prefix=<prefix>::
422 Show the given source prefix instead of "a/".
424 --dst-prefix=<prefix>::
425 Show the given destination prefix instead of "b/".
428 Do not show any source or destination prefix.
430 For more detailed explanation on these common options, see also
431 linkgit:gitdiffcore[7].