Autogenerated manpages for v2.46.1-603-g94b60a
[git-manpages.git] / man1 / git-apply.1
blob5c777418e543adab3719cb144e14d7a93acc56a5
1 '\" t
2 .\"     Title: git-apply
3 .\"    Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
4 .\" Generator: DocBook XSL Stylesheets v1.79.2 <http://docbook.sf.net/>
5 .\"      Date: 2024-09-20
6 .\"    Manual: Git Manual
7 .\"    Source: Git 2.46.1.603.g94b60adee3
8 .\"  Language: English
9 .\"
10 .TH "GIT\-APPLY" "1" "2024-09-20" "Git 2\&.46\&.1\&.603\&.g94b60a" "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]
36           [\-\-index | \-\-intent\-to\-add] [\-\-3way] [\-\-ours | \-\-theirs | \-\-union]
37           [\-\-apply] [\-\-no\-add] [\-\-build\-fake\-ancestor=<file>] [\-R | \-\-reverse]
38           [\-\-allow\-binary\-replacement | \-\-binary] [\-\-reject] [\-z]
39           [\-p<n>] [\-C<n>] [\-\-inaccurate\-eof] [\-\-recount] [\-\-cached]
40           [\-\-ignore\-space\-change | \-\-ignore\-whitespace]
41           [\-\-whitespace=(nowarn|warn|fix|error|error\-all)]
42           [\-\-exclude=<path>] [\-\-include=<path>] [\-\-directory=<root>]
43           [\-\-verbose | \-\-quiet] [\-\-unsafe\-paths] [\-\-allow\-empty] [<patch>\&...\:]
44 .fi
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 \-\-ours, \-\-theirs, \-\-union
128 .RS 4
129 Instead of leaving conflicts in the file, resolve conflicts favouring our (or their or both) side of the lines\&. Requires \-\-3way\&.
132 \-\-build\-fake\-ancestor=<file>
133 .RS 4
134 Newer
135 \fIgit diff\fR
136 output has embedded
137 \fIindex information\fR
138 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\&.
140 When a pure mode change is encountered (which has no index information), the information is read from the current index instead\&.
143 \-R, \-\-reverse
144 .RS 4
145 Apply the patch in reverse\&.
148 \-\-reject
149 .RS 4
150 For atomicity,
151 \fIgit apply\fR
152 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\&.
156 .RS 4
157 When
158 \fB\-\-numstat\fR
159 has been given, do not munge pathnames, but use a NUL\-terminated machine\-readable format\&.
161 Without this option, pathnames with "unusual" characters are quoted as explained for the configuration variable
162 \fBcore\&.quotePath\fR
163 (see
164 \fBgit-config\fR(1))\&.
167 \-p<n>
168 .RS 4
169 Remove <n> leading path components (separated by slashes) from traditional diff paths\&. E\&.g\&., with
170 \fB\-p2\fR, a patch against
171 \fBa/dir/file\fR
172 will be applied directly to
173 \fBfile\fR\&. The default is 1\&.
176 \-C<n>
177 .RS 4
178 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\&.
181 \-\-unidiff\-zero
182 .RS 4
183 By default,
184 \fIgit apply\fR
185 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
186 \fB\-\-unified=0\fR\&. To bypass these checks use
187 \fB\-\-unidiff\-zero\fR\&.
189 Note, for the reasons stated above, the usage of context\-free patches is discouraged\&.
192 \-\-apply
193 .RS 4
194 If you use any of the options marked "Turns off
195 \fIapply\fR" above,
196 \fIgit apply\fR
197 reads and outputs the requested information without actually applying the patch\&. Give this flag after those flags to also apply the patch\&.
200 \-\-no\-add
201 .RS 4
202 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
203 \fIdiff\fR
204 on them and applying the result with this option, which would apply the deletion part but not the addition part\&.
207 \-\-allow\-binary\-replacement, \-\-binary
208 .RS 4
209 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\&.
212 \-\-exclude=<path\-pattern>
213 .RS 4
214 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\&.
217 \-\-include=<path\-pattern>
218 .RS 4
219 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\&.
221 When
222 \fB\-\-exclude\fR
224 \fB\-\-include\fR
225 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\&.
228 \-\-ignore\-space\-change, \-\-ignore\-whitespace
229 .RS 4
230 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
231 \fB\-\-whitespace\fR
232 option\&. New lines will still be fixed, though\&.
235 \-\-whitespace=<action>
236 .RS 4
237 When applying a patch, detect a new or modified line that has whitespace errors\&. What are considered whitespace errors is controlled by
238 \fBcore\&.whitespace\fR
239 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\&.
241 By default, the command outputs warning messages but applies the patch\&. When
242 \fBgit\-apply\fR
243 is used for statistics and not applying a patch, it defaults to
244 \fBnowarn\fR\&.
246 You can use different
247 \fB<action>\fR
248 values to control this behavior:
250 .RS 4
251 .ie n \{\
252 \h'-04'\(bu\h'+03'\c
254 .el \{\
255 .sp -1
256 .IP \(bu 2.3
258 \fBnowarn\fR
259 turns off the trailing whitespace warning\&.
262 .RS 4
263 .ie n \{\
264 \h'-04'\(bu\h'+03'\c
266 .el \{\
267 .sp -1
268 .IP \(bu 2.3
270 \fBwarn\fR
271 outputs warnings for a few such errors, but applies the patch as\-is (default)\&.
274 .RS 4
275 .ie n \{\
276 \h'-04'\(bu\h'+03'\c
278 .el \{\
279 .sp -1
280 .IP \(bu 2.3
282 \fBfix\fR
283 outputs warnings for a few such errors, and applies the patch after fixing them (\fBstrip\fR
284 is a synonym \(em the tool used to consider only trailing whitespace characters as errors, and the fix involved
285 \fIstripping\fR
286 them, but modern Gits do more)\&.
289 .RS 4
290 .ie n \{\
291 \h'-04'\(bu\h'+03'\c
293 .el \{\
294 .sp -1
295 .IP \(bu 2.3
297 \fBerror\fR
298 outputs warnings for a few such errors, and refuses to apply the patch\&.
301 .RS 4
302 .ie n \{\
303 \h'-04'\(bu\h'+03'\c
305 .el \{\
306 .sp -1
307 .IP \(bu 2.3
309 \fBerror\-all\fR
310 is similar to
311 \fBerror\fR
312 but shows all errors\&.
316 \-\-inaccurate\-eof
317 .RS 4
318 Under certain circumstances, some versions of
319 \fIdiff\fR
320 do not correctly detect a missing new\-line at the end of the file\&. As a result, patches created by such
321 \fIdiff\fR
322 programs do not record incomplete lines correctly\&. This option adds support for applying such patches by working around this bug\&.
325 \-v, \-\-verbose
326 .RS 4
327 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\&.
330 \-q, \-\-quiet
331 .RS 4
332 Suppress stderr output\&. Messages about patch status and progress will not be printed\&.
335 \-\-recount
336 .RS 4
337 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)\&.
340 \-\-directory=<root>
341 .RS 4
342 Prepend <root> to all filenames\&. If a "\-p" argument was also passed, it is applied before prepending the new root\&.
344 For example, a patch that talks about updating
345 \fBa/git\-gui\&.sh\fR
347 \fBb/git\-gui\&.sh\fR
348 can be applied to the file in the working tree
349 \fBmodules/git\-gui/git\-gui\&.sh\fR
350 by running
351 \fBgit apply \-\-directory=modules/git\-gui\fR\&.
354 \-\-unsafe\-paths
355 .RS 4
356 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)\&.
358 When
359 \fBgit apply\fR
360 is used as a "better GNU patch", the user can pass the
361 \fB\-\-unsafe\-paths\fR
362 option to override this safety check\&. This option has no effect when
363 \fB\-\-index\fR
365 \fB\-\-cached\fR
366 is in use\&.
369 \-\-allow\-empty
370 .RS 4
371 Don\(cqt return an error for patches containing no diff\&. This includes empty patches and patches with commit text only\&.
373 .SH "CONFIGURATION"
375 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:
377 apply\&.ignoreWhitespace
378 .RS 4
379 When set to
380 \fIchange\fR, tells
381 \fIgit apply\fR
382 to ignore changes in whitespace, in the same way as the
383 \fB\-\-ignore\-space\-change\fR
384 option\&. When set to one of: no, none, never, false, it tells
385 \fIgit apply\fR
386 to respect all whitespace differences\&. See
387 \fBgit-apply\fR(1)\&.
390 apply\&.whitespace
391 .RS 4
392 Tells
393 \fIgit apply\fR
394 how to handle whitespace, in the same way as the
395 \fB\-\-whitespace\fR
396 option\&. See
397 \fBgit-apply\fR(1)\&.
399 .SH "SUBMODULES"
401 If the patch contains any changes to submodules then \fIgit apply\fR treats these changes as follows\&.
403 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\&.
405 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\&.
406 .SH "SEE ALSO"
408 \fBgit-am\fR(1)\&.
409 .SH "GIT"
411 Part of the \fBgit\fR(1) suite