]> git.ipfire.org Git - thirdparty/git.git/blame - Documentation/gitdiffcore.txt
diff: --{rotate,skip}-to=<path>
[thirdparty/git.git] / Documentation / gitdiffcore.txt
CommitLineData
30eba7bf
CC
1gitdiffcore(7)
2==============
4a1332d0 3
30eba7bf
CC
4NAME
5----
dddfb3f1 6gitdiffcore - Tweaking diff output
4a1332d0 7
30eba7bf
CC
8SYNOPSIS
9--------
7791a1d9 10[verse]
0979c106 11'git diff' *
30eba7bf
CC
12
13DESCRIPTION
14-----------
4a1332d0 15
0b444cdb 16The diff commands 'git diff-index', 'git diff-files', and 'git diff-tree'
4cc41a16 17can be told to manipulate differences they find in
2fd02c92 18unconventional ways before showing 'diff' output. The manipulation
59df2a11 19is collectively called "diffcore transformation". This short note
0979c106 20describes what they are and how to use them to produce 'diff' output
877276d4 21that is easier to understand than the conventional kind.
4a1332d0
JH
22
23
24The chain of operation
25----------------------
26
0b444cdb 27The 'git diff-{asterisk}' family works by first comparing two sets of
4a1332d0
JH
28files:
29
0b444cdb 30 - 'git diff-index' compares contents of a "tree" object and the
bcf9626a
MM
31 working directory (when `--cached` flag is not used) or a
32 "tree" object and the index file (when `--cached` flag is
4a1332d0
JH
33 used);
34
0b444cdb 35 - 'git diff-files' compares contents of the index file and the
4a1332d0
JH
36 working directory;
37
0b444cdb 38 - 'git diff-tree' compares contents of two "tree" objects;
59df2a11 39
264e0b9a
YD
40In all of these cases, the commands themselves first optionally limit
41the two sets of files by any pathspecs given on their command-lines,
42and compare corresponding paths in the two resulting sets of files.
43
44The pathspecs are used to limit the world diff operates in. They remove
45the filepairs outside the specified sets of pathnames. E.g. If the
46input set of filepairs included:
47
48------------------------------------------------
49:100644 100644 bcd1234... 0123456... M junkfile
50------------------------------------------------
51
52but the command invocation was `git diff-files myfile`, then the
53junkfile entry would be removed from the list because only "myfile"
54is under consideration.
55
56The result of comparison is passed from these commands to what is
57internally called "diffcore", in a format similar to what is output
58when the -p option is not used. E.g.
4a1332d0 59
8db9307c
JH
60------------------------------------------------
61in-place edit :100644 100644 bcd1234... 0123456... M file0
62create :000000 100644 0000000... 1234567... A file4
63delete :100644 000000 1234567... 0000000... D file5
64unmerged :000000 000000 0000000... 0000000... U file6
65------------------------------------------------
4a1332d0
JH
66
67The diffcore mechanism is fed a list of such comparison results
68(each of which is called "filepair", although at this point each
69of them talks about a single file), and transforms such a list
264e0b9a 70into another list. There are currently 5 such transformations:
4a1332d0 71
8db9307c
JH
72- diffcore-break
73- diffcore-rename
74- diffcore-merge-broken
75- diffcore-pickaxe
76- diffcore-order
1eb4136a 77- diffcore-rotate
4a1332d0 78
0b444cdb 79These are applied in sequence. The set of filepairs 'git diff-{asterisk}'
264e0b9a
YD
80commands find are used as the input to diffcore-break, and
81the output from diffcore-break is used as the input to the
4a1332d0
JH
82next transformation. The final result is then passed to the
83output routine and generates either diff-raw format (see Output
0b444cdb 84format sections of the manual for 'git diff-{asterisk}' commands) or
4a1332d0
JH
85diff-patch format.
86
87
b803ae44
PS
88diffcore-break: For Splitting Up Complete Rewrites
89--------------------------------------------------
4a1332d0
JH
90
91The second transformation in the chain is diffcore-break, and is
0b444cdb 92controlled by the -B option to the 'git diff-{asterisk}' commands. This is
4a1332d0
JH
93used to detect a filepair that represents "complete rewrite" and
94break such filepair into two filepairs that represent delete and
95create. E.g. If the input contained this filepair:
96
8db9307c
JH
97------------------------------------------------
98:100644 100644 bcd1234... 0123456... M file0
99------------------------------------------------
4a1332d0
JH
100
101and if it detects that the file "file0" is completely rewritten,
102it changes it to:
103
8db9307c
JH
104------------------------------------------------
105:100644 000000 bcd1234... 0000000... D file0
106:000000 100644 0000000... 0123456... A file0
107------------------------------------------------
4a1332d0
JH
108
109For the purpose of breaking a filepair, diffcore-break examines
110the extent of changes between the contents of the files before
111and after modification (i.e. the contents that have "bcd1234..."
d5fa1f1a 112and "0123456..." as their SHA-1 content ID, in the above
4a1332d0
JH
113example). The amount of deletion of original contents and
114insertion of new material are added together, and if it exceeds
115the "break score", the filepair is broken into two. The break
116score defaults to 50% of the size of the smaller of the original
117and the result (i.e. if the edit shrinks the file, the size of
118the result is used; if the edit lengthens the file, the size of
119the original is used), and can be customized by giving a number
120after "-B" option (e.g. "-B75" to tell it to use 75%).
121
122
1aa38199 123diffcore-rename: For Detecting Renames and Copies
a67c1d08 124-------------------------------------------------
4a1332d0
JH
125
126This transformation is used to detect renames and copies, and is
127controlled by the -M option (to detect renames) and the -C option
0b444cdb 128(to detect copies as well) to the 'git diff-{asterisk}' commands. If the
4a1332d0
JH
129input contained these filepairs:
130
8db9307c
JH
131------------------------------------------------
132:100644 000000 0123456... 0000000... D fileX
133:000000 100644 0000000... 0123456... A file0
134------------------------------------------------
4a1332d0
JH
135
136and the contents of the deleted file fileX is similar enough to
137the contents of the created file file0, then rename detection
138merges these filepairs and creates:
139
8db9307c
JH
140------------------------------------------------
141:100644 100644 0123456... 0123456... R100 fileX file0
142------------------------------------------------
4a1332d0 143
59df2a11
CS
144When the "-C" option is used, the original contents of modified files,
145and deleted files (and also unmodified files, if the
1c262bb7 146"--find-copies-harder" option is used) are considered as candidates
59df2a11
CS
147of the source files in rename/copy operation. If the input were like
148these filepairs, that talk about a modified file fileY and a newly
4a1332d0
JH
149created file file0:
150
8db9307c
JH
151------------------------------------------------
152:100644 100644 0123456... 1234567... M fileY
59df2a11 153:000000 100644 0000000... bcd3456... A file0
8db9307c 154------------------------------------------------
4a1332d0
JH
155
156the original contents of fileY and the resulting contents of
157file0 are compared, and if they are similar enough, they are
158changed to:
159
8db9307c
JH
160------------------------------------------------
161:100644 100644 0123456... 1234567... M fileY
59df2a11 162:100644 100644 0123456... bcd3456... C100 fileY file0
8db9307c 163------------------------------------------------
4a1332d0
JH
164
165In both rename and copy detection, the same "extent of changes"
166algorithm used in diffcore-break is used to determine if two
167files are "similar enough", and can be customized to use
59df2a11
CS
168a similarity score different from the default of 50% by giving a
169number after the "-M" or "-C" option (e.g. "-M8" to tell it to use
4a1332d0
JH
1708/10 = 80%).
171
6cf378f0 172Note. When the "-C" option is used with `--find-copies-harder`
0b444cdb 173option, 'git diff-{asterisk}' commands feed unmodified filepairs to
232b75ab
JH
174diffcore mechanism as well as modified ones. This lets the copy
175detector consider unmodified files as copy source candidates at
6cf378f0 176the expense of making it slower. Without `--find-copies-harder`,
0b444cdb 177'git diff-{asterisk}' commands can detect copies only if the file that was
232b75ab 178copied happened to have been modified in the same changeset.
4a1332d0
JH
179
180
b803ae44
PS
181diffcore-merge-broken: For Putting Complete Rewrites Back Together
182------------------------------------------------------------------
4a1332d0
JH
183
184This transformation is used to merge filepairs broken by
f73ae1fc 185diffcore-break, and not transformed into rename/copy by
4a1332d0
JH
186diffcore-rename, back into a single modification. This always
187runs when diffcore-break is used.
188
189For the purpose of merging broken filepairs back, it uses a
190different "extent of changes" computation from the ones used by
191diffcore-break and diffcore-rename. It counts only the deletion
192from the original, and does not count insertion. If you removed
193only 10 lines from a 100-line document, even if you added 910
194new lines to make a new 1000-line document, you did not do a
195complete rewrite. diffcore-break breaks such a case in order to
196help diffcore-rename to consider such filepairs as candidate of
197rename/copy detection, but if filepairs broken that way were not
198matched with other filepairs to create rename/copy, then this
199transformation merges them back into the original
200"modification".
201
202The "extent of changes" parameter can be tweaked from the
203default 80% (that is, unless more than 80% of the original
204material is deleted, the broken pairs are merged back into a
205single modification) by giving a second number to -B option,
206like these:
207
8db9307c
JH
208* -B50/60 (give 50% "break score" to diffcore-break, use 60%
209 for diffcore-merge-broken).
210
211* -B/60 (the same as above, since diffcore-break defaults to 50%).
4a1332d0 212
366175ef 213Note that earlier implementation left a broken pair as a separate
f73ae1fc 214creation and deletion patches. This was an unnecessary hack and
366175ef
JH
215the latest implementation always merges all the broken pairs
216back into modifications, but the resulting patch output is
f73ae1fc 217formatted differently for easier review in case of such
366175ef
JH
218a complete rewrite by showing the entire contents of old version
219prefixed with '-', followed by the entire contents of new
220version prefixed with '+'.
221
4a1332d0 222
59df2a11 223diffcore-pickaxe: For Detecting Addition/Deletion of Specified String
a67c1d08 224---------------------------------------------------------------------
4a1332d0 225
5bc3f0b5
RR
226This transformation limits the set of filepairs to those that change
227specified strings between the preimage and the postimage in a certain
228way. -S<block of text> and -G<regular expression> options are used to
229specify different ways these strings are sought.
230
231"-S<block of text>" detects filepairs whose preimage and postimage
232have different number of occurrences of the specified block of text.
233By definition, it will not detect in-file moves. Also, when a
234changeset moves a file wholesale without affecting the interesting
235string, diffcore-rename kicks in as usual, and `-S` omits the filepair
236(since the number of occurrences of that string didn't change in that
237rename-detected filepair). When used with `--pickaxe-regex`, treat
238the <block of text> as an extended POSIX regular expression to match,
239instead of a literal string.
240
241"-G<regular expression>" (mnemonic: grep) detects filepairs whose
242textual diff has an added or a deleted line that matches the given
243regular expression. This means that it will detect in-file (or what
244rename-detection considers the same file) moves, which is noise. The
245implementation runs diff twice and greps, and this can be quite
e0e7cb80
TB
246expensive. To speed things up binary files without textconv filters
247will be ignored.
5bc3f0b5
RR
248
249When `-S` or `-G` are used without `--pickaxe-all`, only filepairs
250that match their respective criterion are kept in the output. When
251`--pickaxe-all` is used, if even one filepair matches their respective
252criterion in a changeset, the entire changeset is kept. This behavior
253is designed to make reviewing changes in the context of the whole
4a1332d0
JH
254changeset easier.
255
59df2a11 256diffcore-order: For Sorting the Output Based on Filenames
a67c1d08 257---------------------------------------------------------
4a1332d0
JH
258
259This is used to reorder the filepairs according to the user's
260(or project's) taste, and is controlled by the -O option to the
0b444cdb 261'git diff-{asterisk}' commands.
4a1332d0 262
59df2a11 263This takes a text file each of whose lines is a shell glob
4a1332d0
JH
264pattern. Filepairs that match a glob pattern on an earlier line
265in the file are output before ones that match a later line, and
266filepairs that do not match any glob pattern are output last.
267
2de9b711 268As an example, a typical orderfile for the core Git probably
8db9307c 269would look like this:
4a1332d0 270
8db9307c 271------------------------------------------------
df8baa42
JF
272README
273Makefile
274Documentation
275*.h
276*.c
277t
8db9307c 278------------------------------------------------
30eba7bf 279
1eb4136a
JH
280diffcore-rotate: For Changing At Which Path Output Starts
281---------------------------------------------------------
282
283This transformation takes one pathname, and rotates the set of
284filepairs so that the filepair for the given pathname comes first,
285optionally discarding the paths that come before it. This is used
286to implement the `--skip-to` and the `--rotate-to` options. It is
287an error when the specified pathname is not in the set of filepairs,
288but it is not useful to error out when used with "git log" family of
289commands, because it is unreasonable to expect that a given path
290would be modified by each and every commit shown by the "git log"
291command. For this reason, when used with "git log", the filepair
292that sorts the same as, or the first one that sorts after, the given
293pathname is where the output starts.
294
295Use of this transformation combined with diffcore-order will produce
296unexpected results, as the input to this transformation is likely
297not sorted when diffcore-order is in effect.
298
299
30eba7bf
CC
300SEE ALSO
301--------
302linkgit:git-diff[1],
303linkgit:git-diff-files[1],
304linkgit:git-diff-index[1],
305linkgit:git-diff-tree[1],
306linkgit:git-format-patch[1],
307linkgit:git-log[1],
308linkgit:gitglossary[7],
309link:user-manual.html[The Git User's Manual]
310
311GIT
312---
941b9c52 313Part of the linkgit:git[1] suite