'\" t .\" Title: git-apply .\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author] .\" Generator: DocBook XSL Stylesheets vsnapshot .\" Date: 11/27/2023 .\" Manual: Git Manual .\" Source: Git 2.43.0 .\" Language: English .\" .TH "GIT\-APPLY" "1" "11/27/2023" "Git 2\&.43\&.0" "Git Manual" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ .\" http://bugs.debian.org/507673 .\" http://lists.gnu.org/archive/html/groff/2009-02/msg00013.html .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ .ie \n(.g .ds Aq \(aq .el .ds Aq ' .\" ----------------------------------------------------------------- .\" * set default formatting .\" ----------------------------------------------------------------- .\" disable hyphenation .nh .\" disable justification (adjust text to left margin only) .ad l .\" ----------------------------------------------------------------- .\" * MAIN CONTENT STARTS HERE * .\" ----------------------------------------------------------------- .SH "NAME" git-apply \- Apply a patch to files and/or to the index .SH "SYNOPSIS" .sp .nf \fIgit apply\fR [\-\-stat] [\-\-numstat] [\-\-summary] [\-\-check] [\-\-index | \-\-intent\-to\-add] [\-\-3way] [\-\-apply] [\-\-no\-add] [\-\-build\-fake\-ancestor=] [\-R | \-\-reverse] [\-\-allow\-binary\-replacement | \-\-binary] [\-\-reject] [\-z] [\-p] [\-C] [\-\-inaccurate\-eof] [\-\-recount] [\-\-cached] [\-\-ignore\-space\-change | \-\-ignore\-whitespace] [\-\-whitespace=(nowarn|warn|fix|error|error\-all)] [\-\-exclude=] [\-\-include=] [\-\-directory=] [\-\-verbose | \-\-quiet] [\-\-unsafe\-paths] [\-\-allow\-empty] [\&...] .fi .sp .SH "DESCRIPTION" .sp 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\&. .sp 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\&. .SH "OPTIONS" .PP \&... .RS 4 The files to read the patch from\&. \fI\-\fR can be used to read from the standard input\&. .RE .PP \-\-stat .RS 4 Instead of applying the patch, output diffstat for the input\&. Turns off "apply"\&. .RE .PP \-\-numstat .RS 4 Similar to \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 \fB\-\fR instead of saying \fB0 0\fR\&. Turns off "apply"\&. .RE .PP \-\-summary .RS 4 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"\&. .RE .PP \-\-check .RS 4 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"\&. .RE .PP \-\-index .RS 4 Apply the patch to both the index and the working tree (or merely check that it would apply cleanly to both if \fB\-\-check\fR is in effect)\&. Note that \fB\-\-index\fR 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\&. .RE .PP \-\-cached .RS 4 Apply the patch to just the index, without touching the working tree\&. If \fB\-\-check\fR is in effect, merely check that it would apply cleanly to the index entry\&. .RE .PP \-\-intent\-to\-add .RS 4 When applying the patch only to the working tree, mark new files to be added to the index later (see \fB\-\-intent\-to\-add\fR option in \fBgit-add\fR(1))\&. This option is ignored unless running in a Git repository and \fB\-\-index\fR is not specified\&. Note that \fB\-\-index\fR could be implied by other options such as \fB\-\-cached\fR or \fB\-\-3way\fR\&. .RE .PP \-3, \-\-3way .RS 4 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 \fB\-\-index\fR option unless the \fB\-\-cached\fR option is used, and is incompatible with the \fB\-\-reject\fR option\&. When used with the \fB\-\-cached\fR option, any conflicts are left at higher stages in the cache\&. .RE .PP \-\-build\-fake\-ancestor= .RS 4 Newer \fIgit diff\fR output has embedded \fIindex information\fR 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\&. .sp When a pure mode change is encountered (which has no index information), the information is read from the current index instead\&. .RE .PP \-R, \-\-reverse .RS 4 Apply the patch in reverse\&. .RE .PP \-\-reject .RS 4 For atomicity, \fIgit apply\fR 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\&. .RE .PP \-z .RS 4 When \fB\-\-numstat\fR has been given, do not munge pathnames, but use a NUL\-terminated machine\-readable format\&. .sp Without this option, pathnames with "unusual" characters are quoted as explained for the configuration variable \fBcore\&.quotePath\fR (see \fBgit-config\fR(1))\&. .RE .PP \-p .RS 4 Remove leading path components (separated by slashes) from traditional diff paths\&. E\&.g\&., with \fB\-p2\fR, a patch against \fBa/dir/file\fR will be applied directly to \fBfile\fR\&. The default is 1\&. .RE .PP \-C .RS 4 Ensure at least 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\&. .RE .PP \-\-unidiff\-zero .RS 4 By default, \fIgit apply\fR 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 \fB\-\-unified=0\fR\&. To bypass these checks use \fB\-\-unidiff\-zero\fR\&. .sp Note, for the reasons stated above, the usage of context\-free patches is discouraged\&. .RE .PP \-\-apply .RS 4 If you use any of the options marked "Turns off \fIapply\fR" above, \fIgit apply\fR reads and outputs the requested information without actually applying the patch\&. Give this flag after those flags to also apply the patch\&. .RE .PP \-\-no\-add .RS 4 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 \fIdiff\fR on them and applying the result with this option, which would apply the deletion part but not the addition part\&. .RE .PP \-\-allow\-binary\-replacement, \-\-binary .RS 4 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\&. .RE .PP \-\-exclude= .RS 4 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\&. .RE .PP \-\-include= .RS 4 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\&. .sp When \fB\-\-exclude\fR and \fB\-\-include\fR 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\&. .RE .PP \-\-ignore\-space\-change, \-\-ignore\-whitespace .RS 4 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 \fB\-\-whitespace\fR option\&. New lines will still be fixed, though\&. .RE .PP \-\-whitespace= .RS 4 When applying a patch, detect a new or modified line that has whitespace errors\&. What are considered whitespace errors is controlled by \fBcore\&.whitespace\fR 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\&. .sp By default, the command outputs warning messages but applies the patch\&. When \fBgit\-apply\fR is used for statistics and not applying a patch, it defaults to \fBnowarn\fR\&. .sp You can use different \fB\fR values to control this behavior: .sp .RS 4 .ie n \{\ \h'-04'\(bu\h'+03'\c .\} .el \{\ .sp -1 .IP \(bu 2.3 .\} \fBnowarn\fR turns off the trailing whitespace warning\&. .RE .sp .RS 4 .ie n \{\ \h'-04'\(bu\h'+03'\c .\} .el \{\ .sp -1 .IP \(bu 2.3 .\} \fBwarn\fR outputs warnings for a few such errors, but applies the patch as\-is (default)\&. .RE .sp .RS 4 .ie n \{\ \h'-04'\(bu\h'+03'\c .\} .el \{\ .sp -1 .IP \(bu 2.3 .\} \fBfix\fR outputs warnings for a few such errors, and applies the patch after fixing them (\fBstrip\fR is a synonym \(em the tool used to consider only trailing whitespace characters as errors, and the fix involved \fIstripping\fR them, but modern Gits do more)\&. .RE .sp .RS 4 .ie n \{\ \h'-04'\(bu\h'+03'\c .\} .el \{\ .sp -1 .IP \(bu 2.3 .\} \fBerror\fR outputs warnings for a few such errors, and refuses to apply the patch\&. .RE .sp .RS 4 .ie n \{\ \h'-04'\(bu\h'+03'\c .\} .el \{\ .sp -1 .IP \(bu 2.3 .\} \fBerror\-all\fR is similar to \fBerror\fR but shows all errors\&. .RE .RE .PP \-\-inaccurate\-eof .RS 4 Under certain circumstances, some versions of \fIdiff\fR do not correctly detect a missing new\-line at the end of the file\&. As a result, patches created by such \fIdiff\fR programs do not record incomplete lines correctly\&. This option adds support for applying such patches by working around this bug\&. .RE .PP \-v, \-\-verbose .RS 4 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\&. .RE .PP \-q, \-\-quiet .RS 4 Suppress stderr output\&. Messages about patch status and progress will not be printed\&. .RE .PP \-\-recount .RS 4 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)\&. .RE .PP \-\-directory= .RS 4 Prepend to all filenames\&. If a "\-p" argument was also passed, it is applied before prepending the new root\&. .sp For example, a patch that talks about updating \fBa/git\-gui\&.sh\fR to \fBb/git\-gui\&.sh\fR can be applied to the file in the working tree \fBmodules/git\-gui/git\-gui\&.sh\fR by running \fBgit apply \-\-directory=modules/git\-gui\fR\&. .RE .PP \-\-unsafe\-paths .RS 4 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)\&. .sp When \fBgit apply\fR is used as a "better GNU patch", the user can pass the \fB\-\-unsafe\-paths\fR option to override this safety check\&. This option has no effect when \fB\-\-index\fR or \fB\-\-cached\fR is in use\&. .RE .PP \-\-allow\-empty .RS 4 Don\(cqt return an error for patches containing no diff\&. This includes empty patches and patches with commit text only\&. .RE .SH "CONFIGURATION" .sp 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: .PP apply\&.ignoreWhitespace .RS 4 When set to \fIchange\fR, tells \fIgit apply\fR to ignore changes in whitespace, in the same way as the \fB\-\-ignore\-space\-change\fR option\&. When set to one of: no, none, never, false, it tells \fIgit apply\fR to respect all whitespace differences\&. See \fBgit-apply\fR(1)\&. .RE .PP apply\&.whitespace .RS 4 Tells \fIgit apply\fR how to handle whitespace, in the same way as the \fB\-\-whitespace\fR option\&. See \fBgit-apply\fR(1)\&. .RE .SH "SUBMODULES" .sp If the patch contains any changes to submodules then \fIgit apply\fR treats these changes as follows\&. .sp 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\&. .sp 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\&. .SH "SEE ALSO" .sp \fBgit-am\fR(1)\&. .SH "GIT" .sp Part of the \fBgit\fR(1) suite