blob: c970d9fe438a091dc19900a4de1973ac4bcc4434 [file] [log] [blame]
Christian Couder30eba7b2008-06-06 09:07:28 +02001gitdiffcore(7)
2==============
Junio C Hamano4a1332d2005-06-05 14:30:58 -07003
Christian Couder30eba7b2008-06-06 09:07:28 +02004NAME
5----
Michael J Gruberdddfb3f2010-03-21 18:30:17 +01006gitdiffcore - Tweaking diff output
Junio C Hamano4a1332d2005-06-05 14:30:58 -07007
Christian Couder30eba7b2008-06-06 09:07:28 +02008SYNOPSIS
9--------
Martin von Zweigbergk7791a1d2011-07-01 22:38:26 -040010[verse]
Jonathan Nieder0979c102008-07-03 00:37:18 -050011'git diff' *
Christian Couder30eba7b2008-06-06 09:07:28 +020012
13DESCRIPTION
14-----------
Junio C Hamano4a1332d2005-06-05 14:30:58 -070015
Thomas Rast0b444cd2010-01-10 00:33:00 +010016The diff commands 'git diff-index', 'git diff-files', and 'git diff-tree'
Junio C Hamano4cc41a12007-02-07 17:03:46 -080017can be told to manipulate differences they find in
Jonathan Nieder2fd02c92008-07-03 00:55:07 -050018unconventional ways before showing 'diff' output. The manipulation
c.shoemaker@cox.net59df2a12005-10-29 00:15:49 -040019is collectively called "diffcore transformation". This short note
Jonathan Nieder0979c102008-07-03 00:37:18 -050020describes what they are and how to use them to produce 'diff' output
Jonathan Nieder877276d2008-07-03 00:30:25 -050021that is easier to understand than the conventional kind.
Junio C Hamano4a1332d2005-06-05 14:30:58 -070022
23
24The chain of operation
25----------------------
26
Thomas Rast0b444cd2010-01-10 00:33:00 +010027The 'git diff-{asterisk}' family works by first comparing two sets of
Junio C Hamano4a1332d2005-06-05 14:30:58 -070028files:
29
Thomas Rast0b444cd2010-01-10 00:33:00 +010030 - 'git diff-index' compares contents of a "tree" object and the
Matthieu Moybcf96262016-06-28 13:40:11 +020031 working directory (when `--cached` flag is not used) or a
32 "tree" object and the index file (when `--cached` flag is
Junio C Hamano4a1332d2005-06-05 14:30:58 -070033 used);
34
Thomas Rast0b444cd2010-01-10 00:33:00 +010035 - 'git diff-files' compares contents of the index file and the
Junio C Hamano4a1332d2005-06-05 14:30:58 -070036 working directory;
37
Thomas Rast0b444cd2010-01-10 00:33:00 +010038 - 'git diff-tree' compares contents of two "tree" objects;
c.shoemaker@cox.net59df2a12005-10-29 00:15:49 -040039
Yann Dirson264e0b92008-09-19 22:12:53 +020040In 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.
Junio C Hamano4a1332d2005-06-05 14:30:58 -070059
Junio C Hamano8db93072005-08-30 13:51:01 -070060------------------------------------------------
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------------------------------------------------
Junio C Hamano4a1332d2005-06-05 14:30:58 -070066
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
Yann Dirson264e0b92008-09-19 22:12:53 +020070into another list. There are currently 5 such transformations:
Junio C Hamano4a1332d2005-06-05 14:30:58 -070071
Junio C Hamano8db93072005-08-30 13:51:01 -070072- diffcore-break
73- diffcore-rename
74- diffcore-merge-broken
75- diffcore-pickaxe
76- diffcore-order
Junio C Hamano4a1332d2005-06-05 14:30:58 -070077
Thomas Rast0b444cd2010-01-10 00:33:00 +010078These are applied in sequence. The set of filepairs 'git diff-{asterisk}'
Yann Dirson264e0b92008-09-19 22:12:53 +020079commands find are used as the input to diffcore-break, and
80the output from diffcore-break is used as the input to the
Junio C Hamano4a1332d2005-06-05 14:30:58 -070081next transformation. The final result is then passed to the
82output routine and generates either diff-raw format (see Output
Thomas Rast0b444cd2010-01-10 00:33:00 +010083format sections of the manual for 'git diff-{asterisk}' commands) or
Junio C Hamano4a1332d2005-06-05 14:30:58 -070084diff-patch format.
85
86
Patrick Steinhardtb803ae42017-02-28 09:59:05 +010087diffcore-break: For Splitting Up Complete Rewrites
88--------------------------------------------------
Junio C Hamano4a1332d2005-06-05 14:30:58 -070089
90The second transformation in the chain is diffcore-break, and is
Thomas Rast0b444cd2010-01-10 00:33:00 +010091controlled by the -B option to the 'git diff-{asterisk}' commands. This is
Junio C Hamano4a1332d2005-06-05 14:30:58 -070092used to detect a filepair that represents "complete rewrite" and
93break such filepair into two filepairs that represent delete and
94create. E.g. If the input contained this filepair:
95
Junio C Hamano8db93072005-08-30 13:51:01 -070096------------------------------------------------
97:100644 100644 bcd1234... 0123456... M file0
98------------------------------------------------
Junio C Hamano4a1332d2005-06-05 14:30:58 -070099
100and if it detects that the file "file0" is completely rewritten,
101it changes it to:
102
Junio C Hamano8db93072005-08-30 13:51:01 -0700103------------------------------------------------
104:100644 000000 bcd1234... 0000000... D file0
105:000000 100644 0000000... 0123456... A file0
106------------------------------------------------
Junio C Hamano4a1332d2005-06-05 14:30:58 -0700107
108For the purpose of breaking a filepair, diffcore-break examines
109the extent of changes between the contents of the files before
110and after modification (i.e. the contents that have "bcd1234..."
Thomas Ackermannd5fa1f12013-04-15 19:49:04 +0200111and "0123456..." as their SHA-1 content ID, in the above
Junio C Hamano4a1332d2005-06-05 14:30:58 -0700112example). The amount of deletion of original contents and
113insertion of new material are added together, and if it exceeds
114the "break score", the filepair is broken into two. The break
115score defaults to 50% of the size of the smaller of the original
116and the result (i.e. if the edit shrinks the file, the size of
117the result is used; if the edit lengthens the file, the size of
118the original is used), and can be customized by giving a number
119after "-B" option (e.g. "-B75" to tell it to use 75%).
120
121
Patrick Steinhardt1aa38192017-02-28 09:59:04 +0100122diffcore-rename: For Detecting Renames and Copies
Junio C Hamanoa67c1d02005-10-29 00:50:42 -0700123-------------------------------------------------
Junio C Hamano4a1332d2005-06-05 14:30:58 -0700124
125This transformation is used to detect renames and copies, and is
126controlled by the -M option (to detect renames) and the -C option
Thomas Rast0b444cd2010-01-10 00:33:00 +0100127(to detect copies as well) to the 'git diff-{asterisk}' commands. If the
Junio C Hamano4a1332d2005-06-05 14:30:58 -0700128input contained these filepairs:
129
Junio C Hamano8db93072005-08-30 13:51:01 -0700130------------------------------------------------
131:100644 000000 0123456... 0000000... D fileX
132:000000 100644 0000000... 0123456... A file0
133------------------------------------------------
Junio C Hamano4a1332d2005-06-05 14:30:58 -0700134
135and the contents of the deleted file fileX is similar enough to
136the contents of the created file file0, then rename detection
137merges these filepairs and creates:
138
Junio C Hamano8db93072005-08-30 13:51:01 -0700139------------------------------------------------
140:100644 100644 0123456... 0123456... R100 fileX file0
141------------------------------------------------
Junio C Hamano4a1332d2005-06-05 14:30:58 -0700142
c.shoemaker@cox.net59df2a12005-10-29 00:15:49 -0400143When the "-C" option is used, the original contents of modified files,
144and deleted files (and also unmodified files, if the
Jeff King1c262bb2015-05-13 01:01:38 -0400145"--find-copies-harder" option is used) are considered as candidates
c.shoemaker@cox.net59df2a12005-10-29 00:15:49 -0400146of the source files in rename/copy operation. If the input were like
147these filepairs, that talk about a modified file fileY and a newly
Junio C Hamano4a1332d2005-06-05 14:30:58 -0700148created file file0:
149
Junio C Hamano8db93072005-08-30 13:51:01 -0700150------------------------------------------------
151:100644 100644 0123456... 1234567... M fileY
c.shoemaker@cox.net59df2a12005-10-29 00:15:49 -0400152:000000 100644 0000000... bcd3456... A file0
Junio C Hamano8db93072005-08-30 13:51:01 -0700153------------------------------------------------
Junio C Hamano4a1332d2005-06-05 14:30:58 -0700154
155the original contents of fileY and the resulting contents of
156file0 are compared, and if they are similar enough, they are
157changed to:
158
Junio C Hamano8db93072005-08-30 13:51:01 -0700159------------------------------------------------
160:100644 100644 0123456... 1234567... M fileY
c.shoemaker@cox.net59df2a12005-10-29 00:15:49 -0400161:100644 100644 0123456... bcd3456... C100 fileY file0
Junio C Hamano8db93072005-08-30 13:51:01 -0700162------------------------------------------------
Junio C Hamano4a1332d2005-06-05 14:30:58 -0700163
164In both rename and copy detection, the same "extent of changes"
165algorithm used in diffcore-break is used to determine if two
166files are "similar enough", and can be customized to use
c.shoemaker@cox.net59df2a12005-10-29 00:15:49 -0400167a similarity score different from the default of 50% by giving a
168number after the "-M" or "-C" option (e.g. "-M8" to tell it to use
Junio C Hamano4a1332d2005-06-05 14:30:58 -07001698/10 = 80%).
170
Jeff King6cf378f2012-04-26 04:51:57 -0400171Note. When the "-C" option is used with `--find-copies-harder`
Thomas Rast0b444cd2010-01-10 00:33:00 +0100172option, 'git diff-{asterisk}' commands feed unmodified filepairs to
Junio C Hamano232b75a2005-06-19 13:14:53 -0700173diffcore mechanism as well as modified ones. This lets the copy
174detector consider unmodified files as copy source candidates at
Jeff King6cf378f2012-04-26 04:51:57 -0400175the expense of making it slower. Without `--find-copies-harder`,
Thomas Rast0b444cd2010-01-10 00:33:00 +0100176'git diff-{asterisk}' commands can detect copies only if the file that was
Junio C Hamano232b75a2005-06-19 13:14:53 -0700177copied happened to have been modified in the same changeset.
Junio C Hamano4a1332d2005-06-05 14:30:58 -0700178
179
Patrick Steinhardtb803ae42017-02-28 09:59:05 +0100180diffcore-merge-broken: For Putting Complete Rewrites Back Together
181------------------------------------------------------------------
Junio C Hamano4a1332d2005-06-05 14:30:58 -0700182
183This transformation is used to merge filepairs broken by
Christian Mederf73ae1f2005-10-05 15:08:26 -0700184diffcore-break, and not transformed into rename/copy by
Junio C Hamano4a1332d2005-06-05 14:30:58 -0700185diffcore-rename, back into a single modification. This always
186runs when diffcore-break is used.
187
188For the purpose of merging broken filepairs back, it uses a
189different "extent of changes" computation from the ones used by
190diffcore-break and diffcore-rename. It counts only the deletion
191from the original, and does not count insertion. If you removed
192only 10 lines from a 100-line document, even if you added 910
193new lines to make a new 1000-line document, you did not do a
194complete rewrite. diffcore-break breaks such a case in order to
195help diffcore-rename to consider such filepairs as candidate of
196rename/copy detection, but if filepairs broken that way were not
197matched with other filepairs to create rename/copy, then this
198transformation merges them back into the original
199"modification".
200
201The "extent of changes" parameter can be tweaked from the
202default 80% (that is, unless more than 80% of the original
203material is deleted, the broken pairs are merged back into a
204single modification) by giving a second number to -B option,
205like these:
206
Junio C Hamano8db93072005-08-30 13:51:01 -0700207* -B50/60 (give 50% "break score" to diffcore-break, use 60%
208 for diffcore-merge-broken).
209
210* -B/60 (the same as above, since diffcore-break defaults to 50%).
Junio C Hamano4a1332d2005-06-05 14:30:58 -0700211
Junio C Hamano366175e2005-06-19 13:17:50 -0700212Note that earlier implementation left a broken pair as a separate
Christian Mederf73ae1f2005-10-05 15:08:26 -0700213creation and deletion patches. This was an unnecessary hack and
Junio C Hamano366175e2005-06-19 13:17:50 -0700214the latest implementation always merges all the broken pairs
215back into modifications, but the resulting patch output is
Christian Mederf73ae1f2005-10-05 15:08:26 -0700216formatted differently for easier review in case of such
Junio C Hamano366175e2005-06-19 13:17:50 -0700217a complete rewrite by showing the entire contents of old version
218prefixed with '-', followed by the entire contents of new
219version prefixed with '+'.
220
Junio C Hamano4a1332d2005-06-05 14:30:58 -0700221
c.shoemaker@cox.net59df2a12005-10-29 00:15:49 -0400222diffcore-pickaxe: For Detecting Addition/Deletion of Specified String
Junio C Hamanoa67c1d02005-10-29 00:50:42 -0700223---------------------------------------------------------------------
Junio C Hamano4a1332d2005-06-05 14:30:58 -0700224
Ramkumar Ramachandra5bc3f0b2013-05-31 17:42:15 +0530225This transformation limits the set of filepairs to those that change
226specified strings between the preimage and the postimage in a certain
227way. -S<block of text> and -G<regular expression> options are used to
228specify different ways these strings are sought.
Junio C Hamano4a1332d2005-06-05 14:30:58 -0700229
Ramkumar Ramachandra5bc3f0b2013-05-31 17:42:15 +0530230"-S<block of text>" detects filepairs whose preimage and postimage
231have different number of occurrences of the specified block of text.
232By definition, it will not detect in-file moves. Also, when a
233changeset moves a file wholesale without affecting the interesting
234string, diffcore-rename kicks in as usual, and `-S` omits the filepair
235(since the number of occurrences of that string didn't change in that
236rename-detected filepair). When used with `--pickaxe-regex`, treat
237the <block of text> as an extended POSIX regular expression to match,
238instead of a literal string.
Junio C Hamano4a1332d2005-06-05 14:30:58 -0700239
Ramkumar Ramachandra5bc3f0b2013-05-31 17:42:15 +0530240"-G<regular expression>" (mnemonic: grep) detects filepairs whose
241textual diff has an added or a deleted line that matches the given
242regular expression. This means that it will detect in-file (or what
243rename-detection considers the same file) moves, which is noise. The
244implementation runs diff twice and greps, and this can be quite
Thomas Braune0e7cb82018-12-14 19:49:12 +0100245expensive. To speed things up binary files without textconv filters
246will be ignored.
Ramkumar Ramachandra5bc3f0b2013-05-31 17:42:15 +0530247
248When `-S` or `-G` are used without `--pickaxe-all`, only filepairs
249that match their respective criterion are kept in the output. When
250`--pickaxe-all` is used, if even one filepair matches their respective
251criterion in a changeset, the entire changeset is kept. This behavior
252is designed to make reviewing changes in the context of the whole
Junio C Hamano4a1332d2005-06-05 14:30:58 -0700253changeset easier.
254
c.shoemaker@cox.net59df2a12005-10-29 00:15:49 -0400255diffcore-order: For Sorting the Output Based on Filenames
Junio C Hamanoa67c1d02005-10-29 00:50:42 -0700256---------------------------------------------------------
Junio C Hamano4a1332d2005-06-05 14:30:58 -0700257
258This is used to reorder the filepairs according to the user's
259(or project's) taste, and is controlled by the -O option to the
Thomas Rast0b444cd2010-01-10 00:33:00 +0100260'git diff-{asterisk}' commands.
Junio C Hamano4a1332d2005-06-05 14:30:58 -0700261
c.shoemaker@cox.net59df2a12005-10-29 00:15:49 -0400262This takes a text file each of whose lines is a shell glob
Junio C Hamano4a1332d2005-06-05 14:30:58 -0700263pattern. Filepairs that match a glob pattern on an earlier line
264in the file are output before ones that match a later line, and
265filepairs that do not match any glob pattern are output last.
266
Thomas Ackermann2de9b712013-01-21 20:17:53 +0100267As an example, a typical orderfile for the core Git probably
Junio C Hamano8db93072005-08-30 13:51:01 -0700268would look like this:
Junio C Hamano4a1332d2005-06-05 14:30:58 -0700269
Junio C Hamano8db93072005-08-30 13:51:01 -0700270------------------------------------------------
Jonas Fonsecadf8baa42005-10-03 19:16:30 +0200271README
272Makefile
273Documentation
274*.h
275*.c
276t
Junio C Hamano8db93072005-08-30 13:51:01 -0700277------------------------------------------------
Christian Couder30eba7b2008-06-06 09:07:28 +0200278
279SEE ALSO
280--------
281linkgit:git-diff[1],
282linkgit:git-diff-files[1],
283linkgit:git-diff-index[1],
284linkgit:git-diff-tree[1],
285linkgit:git-format-patch[1],
286linkgit:git-log[1],
287linkgit:gitglossary[7],
288link:user-manual.html[The Git User's Manual]
289
290GIT
291---
Stefan Beller941b9c52017-02-08 17:29:30 -0800292Part of the linkgit:git[1] suite