Autogenerated manpages for v2.44.0-568-g436d4
[git-manpages.git] / man1 / git-apply.1
blobb2952aecd0dd4069fc9712bf605209b36096908d
1 '\" t
2 .\"     Title: git-apply
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: 2024-04-10
6 .\"    Manual: Git Manual
7 .\"    Source: Git 2.44.0.568.g436d4e5b14
8 .\"  Language: English
9 .\"
10 .TH "GIT\-APPLY" "1" "2024\-04\-10" "Git 2\&.44\&.0\&.568\&.g436d4e" "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-apply \- Apply a patch to files and/or to the index
32 .SH "SYNOPSIS"
33 .sp
34 .nf
35 \fIgit apply\fR [\-\-stat] [\-\-numstat] [\-\-summary] [\-\-check] [\-\-index | \-\-intent\-to\-add] [\-\-3way]
36           [\-\-apply] [\-\-no\-add] [\-\-build\-fake\-ancestor=<file>] [\-R | \-\-reverse]
37           [\-\-allow\-binary\-replacement | \-\-binary] [\-\-reject] [\-z]
38           [\-p<n>] [\-C<n>] [\-\-inaccurate\-eof] [\-\-recount] [\-\-cached]
39           [\-\-ignore\-space\-change | \-\-ignore\-whitespace]
40           [\-\-whitespace=(nowarn|warn|fix|error|error\-all)]
41           [\-\-exclude=<path>] [\-\-include=<path>] [\-\-directory=<root>]
42           [\-\-verbose | \-\-quiet] [\-\-unsafe\-paths] [\-\-allow\-empty] [<patch>\&...]
43 .fi
44 .sp
45 .SH "DESCRIPTION"
46 .sp
47 Reads the supplied diff output (i\&.e\&. "a patch") and applies it to files\&. When running from a subdirectory in a repository, patched paths outside the directory are ignored\&. With the \fB\-\-index\fR option, the patch is also applied to the index, and with the \fB\-\-cached\fR option, the patch is only applied to the index\&. Without these options, the command applies the patch only to files, and does not require them to be in a Git repository\&.
48 .sp
49 This command applies the patch but does not create a commit\&. Use \fBgit-am\fR(1) to create commits from patches generated by \fBgit-format-patch\fR(1) and/or received by email\&.
50 .SH "OPTIONS"
51 .PP
52 <patch>\&...
53 .RS 4
54 The files to read the patch from\&.
55 \fI\-\fR
56 can be used to read from the standard input\&.
57 .RE
58 .PP
59 \-\-stat
60 .RS 4
61 Instead of applying the patch, output diffstat for the input\&. Turns off "apply"\&.
62 .RE
63 .PP
64 \-\-numstat
65 .RS 4
66 Similar to
67 \fB\-\-stat\fR, but shows the number of added and deleted lines in decimal notation and the pathname without abbreviation, to make it more machine friendly\&. For binary files, outputs two
68 \fB\-\fR
69 instead of saying
70 \fB0 0\fR\&. Turns off "apply"\&.
71 .RE
72 .PP
73 \-\-summary
74 .RS 4
75 Instead of applying the patch, output a condensed summary of information obtained from git diff extended headers, such as creations, renames, and mode changes\&. Turns off "apply"\&.
76 .RE
77 .PP
78 \-\-check
79 .RS 4
80 Instead of applying the patch, see if the patch is applicable to the current working tree and/or the index file and detects errors\&. Turns off "apply"\&.
81 .RE
82 .PP
83 \-\-index
84 .RS 4
85 Apply the patch to both the index and the working tree (or merely check that it would apply cleanly to both if
86 \fB\-\-check\fR
87 is in effect)\&. Note that
88 \fB\-\-index\fR
89 expects index entries and working tree copies for relevant paths to be identical (their contents and metadata such as file mode must match), and will raise an error if they are not, even if the patch would apply cleanly to both the index and the working tree in isolation\&.
90 .RE
91 .PP
92 \-\-cached
93 .RS 4
94 Apply the patch to just the index, without touching the working tree\&. If
95 \fB\-\-check\fR
96 is in effect, merely check that it would apply cleanly to the index entry\&.
97 .RE
98 .PP
99 \-\-intent\-to\-add
100 .RS 4
101 When applying the patch only to the working tree, mark new files to be added to the index later (see
102 \fB\-\-intent\-to\-add\fR
103 option in
104 \fBgit-add\fR(1))\&. This option is ignored unless running in a Git repository and
105 \fB\-\-index\fR
106 is not specified\&. Note that
107 \fB\-\-index\fR
108 could be implied by other options such as
109 \fB\-\-cached\fR
111 \fB\-\-3way\fR\&.
114 \-3, \-\-3way
115 .RS 4
116 Attempt 3\-way merge if the patch records the identity of blobs it is supposed to apply to and we have those blobs available locally, possibly leaving the conflict markers in the files in the working tree for the user to resolve\&. This option implies the
117 \fB\-\-index\fR
118 option unless the
119 \fB\-\-cached\fR
120 option is used, and is incompatible with the
121 \fB\-\-reject\fR
122 option\&. When used with the
123 \fB\-\-cached\fR
124 option, any conflicts are left at higher stages in the cache\&.
127 \-\-build\-fake\-ancestor=<file>
128 .RS 4
129 Newer
130 \fIgit diff\fR
131 output has embedded
132 \fIindex information\fR
133 for each blob to help identify the original version that the patch applies to\&. When this flag is given, and if the original versions of the blobs are available locally, builds a temporary index containing those blobs\&.
135 When a pure mode change is encountered (which has no index information), the information is read from the current index instead\&.
138 \-R, \-\-reverse
139 .RS 4
140 Apply the patch in reverse\&.
143 \-\-reject
144 .RS 4
145 For atomicity,
146 \fIgit apply\fR
147 by default fails the whole patch and does not touch the working tree when some of the hunks do not apply\&. This option makes it apply the parts of the patch that are applicable, and leave the rejected hunks in corresponding *\&.rej files\&.
151 .RS 4
152 When
153 \fB\-\-numstat\fR
154 has been given, do not munge pathnames, but use a NUL\-terminated machine\-readable format\&.
156 Without this option, pathnames with "unusual" characters are quoted as explained for the configuration variable
157 \fBcore\&.quotePath\fR
158 (see
159 \fBgit-config\fR(1))\&.
162 \-p<n>
163 .RS 4
164 Remove <n> leading path components (separated by slashes) from traditional diff paths\&. E\&.g\&., with
165 \fB\-p2\fR, a patch against
166 \fBa/dir/file\fR
167 will be applied directly to
168 \fBfile\fR\&. The default is 1\&.
171 \-C<n>
172 .RS 4
173 Ensure at least <n> lines of surrounding context match before and after each change\&. When fewer lines of surrounding context exist they all must match\&. By default no context is ever ignored\&.
176 \-\-unidiff\-zero
177 .RS 4
178 By default,
179 \fIgit apply\fR
180 expects that the patch being applied is a unified diff with at least one line of context\&. This provides good safety measures, but breaks down when applying a diff generated with
181 \fB\-\-unified=0\fR\&. To bypass these checks use
182 \fB\-\-unidiff\-zero\fR\&.
184 Note, for the reasons stated above, the usage of context\-free patches is discouraged\&.
187 \-\-apply
188 .RS 4
189 If you use any of the options marked "Turns off
190 \fIapply\fR" above,
191 \fIgit apply\fR
192 reads and outputs the requested information without actually applying the patch\&. Give this flag after those flags to also apply the patch\&.
195 \-\-no\-add
196 .RS 4
197 When applying a patch, ignore additions made by the patch\&. This can be used to extract the common part between two files by first running
198 \fIdiff\fR
199 on them and applying the result with this option, which would apply the deletion part but not the addition part\&.
202 \-\-allow\-binary\-replacement, \-\-binary
203 .RS 4
204 Historically we did not allow binary patch application without an explicit permission from the user, and this flag was the way to do so\&. Currently, we always allow binary patch application, so this is a no\-op\&.
207 \-\-exclude=<path\-pattern>
208 .RS 4
209 Don\(cqt apply changes to files matching the given path pattern\&. This can be useful when importing patchsets, where you want to exclude certain files or directories\&.
212 \-\-include=<path\-pattern>
213 .RS 4
214 Apply changes to files matching the given path pattern\&. This can be useful when importing patchsets, where you want to include certain files or directories\&.
216 When
217 \fB\-\-exclude\fR
219 \fB\-\-include\fR
220 patterns are used, they are examined in the order they appear on the command line, and the first match determines if a patch to each path is used\&. A patch to a path that does not match any include/exclude pattern is used by default if there is no include pattern on the command line, and ignored if there is any include pattern\&.
223 \-\-ignore\-space\-change, \-\-ignore\-whitespace
224 .RS 4
225 When applying a patch, ignore changes in whitespace in context lines if necessary\&. Context lines will preserve their whitespace, and they will not undergo whitespace fixing regardless of the value of the
226 \fB\-\-whitespace\fR
227 option\&. New lines will still be fixed, though\&.
230 \-\-whitespace=<action>
231 .RS 4
232 When applying a patch, detect a new or modified line that has whitespace errors\&. What are considered whitespace errors is controlled by
233 \fBcore\&.whitespace\fR
234 configuration\&. By default, trailing whitespaces (including lines that solely consist 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\&.
236 By default, the command outputs warning messages but applies the patch\&. When
237 \fBgit\-apply\fR
238 is used for statistics and not applying a patch, it defaults to
239 \fBnowarn\fR\&.
241 You can use different
242 \fB<action>\fR
243 values to control this behavior:
245 .RS 4
246 .ie n \{\
247 \h'-04'\(bu\h'+03'\c
249 .el \{\
250 .sp -1
251 .IP \(bu 2.3
253 \fBnowarn\fR
254 turns off the trailing whitespace warning\&.
257 .RS 4
258 .ie n \{\
259 \h'-04'\(bu\h'+03'\c
261 .el \{\
262 .sp -1
263 .IP \(bu 2.3
265 \fBwarn\fR
266 outputs warnings for a few such errors, but applies the patch as\-is (default)\&.
269 .RS 4
270 .ie n \{\
271 \h'-04'\(bu\h'+03'\c
273 .el \{\
274 .sp -1
275 .IP \(bu 2.3
277 \fBfix\fR
278 outputs warnings for a few such errors, and applies the patch after fixing them (\fBstrip\fR
279 is a synonym \(em the tool used to consider only trailing whitespace characters as errors, and the fix involved
280 \fIstripping\fR
281 them, but modern Gits do more)\&.
284 .RS 4
285 .ie n \{\
286 \h'-04'\(bu\h'+03'\c
288 .el \{\
289 .sp -1
290 .IP \(bu 2.3
292 \fBerror\fR
293 outputs warnings for a few such errors, and refuses to apply the patch\&.
296 .RS 4
297 .ie n \{\
298 \h'-04'\(bu\h'+03'\c
300 .el \{\
301 .sp -1
302 .IP \(bu 2.3
304 \fBerror\-all\fR
305 is similar to
306 \fBerror\fR
307 but shows all errors\&.
311 \-\-inaccurate\-eof
312 .RS 4
313 Under certain circumstances, some versions of
314 \fIdiff\fR
315 do not correctly detect a missing new\-line at the end of the file\&. As a result, patches created by such
316 \fIdiff\fR
317 programs do not record incomplete lines correctly\&. This option adds support for applying such patches by working around this bug\&.
320 \-v, \-\-verbose
321 .RS 4
322 Report progress to stderr\&. By default, only a message about the current patch being applied will be printed\&. This option will cause additional information to be reported\&.
325 \-q, \-\-quiet
326 .RS 4
327 Suppress stderr output\&. Messages about patch status and progress will not be printed\&.
330 \-\-recount
331 .RS 4
332 Do not trust the line counts in the hunk headers, but infer them by inspecting the patch (e\&.g\&. after editing the patch without adjusting the hunk headers appropriately)\&.
335 \-\-directory=<root>
336 .RS 4
337 Prepend <root> to all filenames\&. If a "\-p" argument was also passed, it is applied before prepending the new root\&.
339 For example, a patch that talks about updating
340 \fBa/git\-gui\&.sh\fR
342 \fBb/git\-gui\&.sh\fR
343 can be applied to the file in the working tree
344 \fBmodules/git\-gui/git\-gui\&.sh\fR
345 by running
346 \fBgit apply \-\-directory=modules/git\-gui\fR\&.
349 \-\-unsafe\-paths
350 .RS 4
351 By default, a patch that affects outside the working area (either a Git controlled working tree, or the current working directory when "git apply" is used as a replacement of GNU patch) is rejected as a mistake (or a mischief)\&.
353 When
354 \fBgit apply\fR
355 is used as a "better GNU patch", the user can pass the
356 \fB\-\-unsafe\-paths\fR
357 option to override this safety check\&. This option has no effect when
358 \fB\-\-index\fR
360 \fB\-\-cached\fR
361 is in use\&.
364 \-\-allow\-empty
365 .RS 4
366 Don\(cqt return an error for patches containing no diff\&. This includes empty patches and patches with commit text only\&.
368 .SH "CONFIGURATION"
370 Everything below this line in this section is selectively included from the \fBgit-config\fR(1) documentation\&. The content is the same as what\(cqs found there:
372 apply\&.ignoreWhitespace
373 .RS 4
374 When set to
375 \fIchange\fR, tells
376 \fIgit apply\fR
377 to ignore changes in whitespace, in the same way as the
378 \fB\-\-ignore\-space\-change\fR
379 option\&. When set to one of: no, none, never, false, it tells
380 \fIgit apply\fR
381 to respect all whitespace differences\&. See
382 \fBgit-apply\fR(1)\&.
385 apply\&.whitespace
386 .RS 4
387 Tells
388 \fIgit apply\fR
389 how to handle whitespace, in the same way as the
390 \fB\-\-whitespace\fR
391 option\&. See
392 \fBgit-apply\fR(1)\&.
394 .SH "SUBMODULES"
396 If the patch contains any changes to submodules then \fIgit apply\fR treats these changes as follows\&.
398 If \fB\-\-index\fR is specified (explicitly or implicitly), then the submodule commits must match the index exactly for the patch to apply\&. If any of the submodules are checked\-out, then these check\-outs are completely ignored, i\&.e\&., they are not required to be up to date or clean and they are not updated\&.
400 If \fB\-\-index\fR is not specified, then the submodule commits in the patch are ignored and only the absence or presence of the corresponding subdirectory is checked and (if possible) updated\&.
401 .SH "SEE ALSO"
403 \fBgit-am\fR(1)\&.
404 .SH "GIT"
406 Part of the \fBgit\fR(1) suite