]> git.ipfire.org Git - thirdparty/git.git/blame - Documentation/diff-generate-patch.txt
Merge branch 'jk/bundle-use-dash-for-stdfiles'
[thirdparty/git.git] / Documentation / diff-generate-patch.txt
CommitLineData
ebdc46c2 1[[generate_patch_text_with_p]]
6fae6bd5
JS
2Generating patch text with -p
3-----------------------------
272bd3cf 4
6fae6bd5
JS
5Running
6linkgit:git-diff[1],
7linkgit:git-log[1],
8linkgit:git-show[1],
9linkgit:git-diff-index[1],
10linkgit:git-diff-tree[1], or
11linkgit:git-diff-files[1]
12with the `-p` option produces patch text.
13You can customize the creation of patch text via the
17bae894 14`GIT_EXTERNAL_DIFF` and the `GIT_DIFF_OPTS` environment variables
7a14acdb 15(see linkgit:git[1]), and the `diff` attribute (see linkgit:gitattributes[5]).
272bd3cf
MV
16
17What the -p option produces is slightly different from the traditional
9659df52 18diff format:
272bd3cf 19
9659df52 201. It is preceded with a "git diff" header that looks like this:
272bd3cf
MV
21
22 diff --git a/file1 b/file2
23+
24The `a/` and `b/` filenames are the same unless rename/copy is
25involved. Especially, even for a creation or a deletion,
9659df52 26`/dev/null` is _not_ used in place of the `a/` or `b/` filenames.
272bd3cf
MV
27+
28When rename/copy is involved, `file1` and `file2` show the
29name of the source file of the rename/copy and the name of
30the file that rename/copy produces, respectively.
31
322. It is followed by one or more extended header lines:
33
34 old mode <mode>
35 new mode <mode>
36 deleted file mode <mode>
37 new file mode <mode>
38 copy from <path>
39 copy to <path>
40 rename from <path>
41 rename to <path>
42 similarity index <number>
43 dissimilarity index <number>
44 index <hash>..<hash> <mode>
9659df52
AG
45+
46File modes are printed as 6-digit octal numbers including the file type
47and file permission bits.
48+
49Path names in extended headers do not include the `a/` and `b/` prefixes.
50+
272bd3cf
MV
51The similarity index is the percentage of unchanged lines, and
52the dissimilarity index is the percentage of changed lines. It
53is a rounded down integer, followed by a percent sign. The
54similarity index value of 100% is thus reserved for two equal
55files, while 100% dissimilarity means that no line from the old
56file made it into the new one.
9659df52 57+
0eb7c37a 58The index line includes the blob object names before and after the change.
9659df52
AG
59The <mode> is included if the file mode does not change; otherwise,
60separate lines indicate the old and the new mode.
61
860cd699
AH
623. Pathnames with "unusual" characters are quoted as explained for
63 the configuration variable `core.quotePath` (see
64 linkgit:git-config[1]).
9659df52
AG
65
664. All the `file1` files in the output refer to files before the
67 commit, and all the `file2` files refer to files after the commit.
68 It is incorrect to apply each change to each file sequentially. For
69 example, this patch will swap a and b:
70
71 diff --git a/a b/b
72 rename from a
73 rename to b
74 diff --git a/b b/a
75 rename from b
76 rename to a
272bd3cf 77
7a14acdb
PO
785. Hunk headers mention the name of the function to which the hunk
79 applies. See "Defining a custom hunk-header" in
80 linkgit:gitattributes[5] for details of how to tailor to this to
81 specific languages.
82
272bd3cf 83
0eb7c37a 84Combined diff format
272bd3cf
MV
85--------------------
86
e0adb84c
AM
87Any diff-generating command can take the `-c` or `--cc` option to
88produce a 'combined diff' when showing a merge. This is the default
89format when showing merges with linkgit:git-diff[1] or
8efd2efc
SO
90linkgit:git-show[1]. Note also that you can give suitable
91`--diff-merges` option to any of these commands to force generation of
92diffs in specific format.
e0adb84c 93
0eb7c37a 94A "combined diff" format looks like this:
272bd3cf
MV
95
96------------
97diff --combined describe.c
98index fabadb8,cc95eb0..4866510
99--- a/describe.c
100+++ b/describe.c
101@@@ -98,20 -98,12 +98,20 @@@
102 return (a_date > b_date) ? -1 : (a_date == b_date) ? 0 : 1;
103 }
104
105- static void describe(char *arg)
106 -static void describe(struct commit *cmit, int last_one)
107++static void describe(char *arg, int last_one)
108 {
109 + unsigned char sha1[20];
110 + struct commit *cmit;
111 struct commit_list *list;
112 static int initialized = 0;
113 struct commit_name *n;
114
115 + if (get_sha1(arg, sha1) < 0)
116 + usage(describe_usage);
117 + cmit = lookup_commit_reference(sha1);
118 + if (!cmit)
119 + usage(describe_usage);
120 +
121 if (!initialized) {
122 initialized = 1;
123 for_each_ref(get_name);
124------------
125
1261. It is preceded with a "git diff" header, that looks like
0eb7c37a 127 this (when the `-c` option is used):
272bd3cf
MV
128
129 diff --combined file
130+
0eb7c37a 131or like this (when the `--cc` option is used):
272bd3cf 132
e57c817d 133 diff --cc file
272bd3cf
MV
134
1352. It is followed by one or more extended header lines
136 (this example shows a merge with two parents):
137
138 index <hash>,<hash>..<hash>
139 mode <mode>,<mode>..<mode>
140 new file mode <mode>
141 deleted file mode <mode>,<mode>
142+
143The `mode <mode>,<mode>..<mode>` line appears only if at least one of
144the <mode> is different from the rest. Extended headers with
145information about detected contents movement (renames and
146copying detection) are designed to work with diff of two
147<tree-ish> and are not used by combined diff format.
148
1493. It is followed by two-line from-file/to-file header
150
151 --- a/file
152 +++ b/file
153+
154Similar to two-line header for traditional 'unified' diff
155format, `/dev/null` is used to signal created or deleted
156files.
d76ce4f7
EN
157+
158However, if the --combined-all-paths option is provided, instead of a
159two-line from-file/to-file you get a N+1 line from-file/to-file header,
160where N is the number of parents in the merge commit
161
162 --- a/file
163 --- a/file
164 --- a/file
165 +++ b/file
166+
167This extended format can be useful if rename or copy detection is
168active, to allow you to see the original name of the file in different
169parents.
272bd3cf
MV
170
1714. Chunk header format is modified to prevent people from
172 accidentally feeding it to `patch -p1`. Combined diff format
173 was created for review of merge commit changes, and was not
0eb7c37a 174 meant to be applied. The change is similar to the change in the
272bd3cf
MV
175 extended 'index' header:
176
177 @@@ <from-file-range> <from-file-range> <to-file-range> @@@
178+
179There are (number of parents + 1) `@` characters in the chunk
180header for combined diff format.
181
182Unlike the traditional 'unified' diff format, which shows two
183files A and B with a single column that has `-` (minus --
184appears in A but removed in B), `+` (plus -- missing in A but
185added to B), or `" "` (space -- unchanged) prefix, this format
186compares two or more files file1, file2,... with one file X, and
187shows how X differs from each of fileN. One column for each of
188fileN is prepended to the output line to note how X's line is
189different from it.
190
191A `-` character in the column N means that the line appears in
192fileN but it does not appear in the result. A `+` character
04c8ce9c 193in the column N means that the line appears in the result,
272bd3cf
MV
194and fileN does not have that line (in other words, the line was
195added, from the point of view of that parent).
196
197In the above example output, the function signature was changed
198from both files (hence two `-` removals from both file1 and
199file2, plus `++` to mean one line that was added does not appear
a58088ab 200in either file1 or file2). Also eight other lines are the same
6cf378f0 201from file1 but do not appear in file2 (hence prefixed with `+`).
272bd3cf
MV
202
203When shown by `git diff-tree -c`, it compares the parents of a
204merge commit with the merge result (i.e. file1..fileN are the
205parents). When shown by `git diff-files -c`, it compares the
206two unresolved merge parents with the working tree file
207(i.e. file1 is stage 2 aka "our version", file2 is stage 3 aka
208"their version").