]> git.ipfire.org Git - thirdparty/git.git/blame - Documentation/git-diff.txt
The third batch
[thirdparty/git.git] / Documentation / git-diff.txt
CommitLineData
215a7ad1
JH
1git-diff(1)
2===========
7fc9d69f
JH
3
4NAME
5----
7bd7f280 6git-diff - Show changes between commits, commit and working tree, etc
7fc9d69f
JH
7
8
9SYNOPSIS
10--------
49bd56a5 11[verse]
de613050 12'git diff' [<options>] [<commit>] [--] [<path>...]
0f5a1d44 13'git diff' [<options>] --cached [--merge-base] [<commit>] [--] [<path>...]
3d09c228 14'git diff' [<options>] [--merge-base] <commit> [<commit>...] <commit> [--] [<path>...]
b7e10b2c 15'git diff' [<options>] <commit>...<commit> [--] [<path>...]
de613050
RD
16'git diff' [<options>] <blob> <blob>
17'git diff' [<options>] --no-index [--] <path> <path>
7fc9d69f
JH
18
19DESCRIPTION
20-----------
49bd56a5 21Show changes between the working tree and the index or a tree, changes
b7e10b2c
CT
22between the index and a tree, changes between two trees, changes resulting
23from a merge, changes between two blob objects, or changes between two
24files on disk.
35ef3a4c 25
de613050 26'git diff' [<options>] [--] [<path>...]::
dfa2f22f 27
f5e6b89b
JH
28 This form is to view the changes you made relative to
29 the index (staging area for the next commit). In other
2de9b711 30 words, the differences are what you _could_ tell Git to
f5e6b89b 31 further add to the index but you still haven't. You can
5162e697 32 stage these changes by using linkgit:git-add[1].
286bc123 33
de613050 34'git diff' [<options>] --no-index [--] <path> <path>::
286bc123
JH
35
36 This form is to compare the given two paths on the
37 filesystem. You can omit the `--no-index` option when
38 running the command in a working tree controlled by Git and
39 at least one of the paths points outside the working tree,
40 or when running the command outside a working tree
0115e5d9 41 controlled by Git. This form implies `--exit-code`.
d516c2d1 42
0f5a1d44 43'git diff' [<options>] --cached [--merge-base] [<commit>] [--] [<path>...]::
f5e6b89b
JH
44
45 This form is to view the changes you staged for the next
ce054545 46 commit relative to the named <commit>. Typically you
f5e6b89b
JH
47 would want comparison with the latest commit, so if you
48 do not give <commit>, it defaults to HEAD.
5fe8f49b 49 If HEAD does not exist (e.g. unborn branches) and
a2b7a3b3 50 <commit> is not given, it shows all staged changes.
2baf1850 51 --staged is a synonym of --cached.
0f5a1d44
DL
52+
53If --merge-base is given, instead of using <commit>, use the merge base
eb448631
DL
54of <commit> and HEAD. `git diff --cached --merge-base A` is equivalent to
55`git diff --cached $(git merge-base A HEAD)`.
f5e6b89b 56
eb448631 57'git diff' [<options>] [--merge-base] <commit> [--] [<path>...]::
f5e6b89b
JH
58
59 This form is to view the changes you have in your
60 working tree relative to the named <commit>. You can
61 use HEAD to compare it with the latest commit, or a
62 branch name to compare with the tip of a different
63 branch.
eb448631
DL
64+
65If --merge-base is given, instead of using <commit>, use the merge base
66of <commit> and HEAD. `git diff --merge-base A` is equivalent to
67`git diff $(git merge-base A HEAD)`.
f5e6b89b 68
3d09c228 69'git diff' [<options>] [--merge-base] <commit> <commit> [--] [<path>...]::
f5e6b89b 70
2b9232cc
MH
71 This is to view the changes between two arbitrary
72 <commit>.
3d09c228
DL
73+
74If --merge-base is given, use the merge base of the two commits for the
75"before" side. `git diff --merge-base A B` is equivalent to
76`git diff $(git merge-base A B) B`.
2b9232cc 77
bc5482e9 78'git diff' [<options>] <commit> <commit>... <commit> [--] [<path>...]::
b7e10b2c
CT
79
80 This form is to view the results of a merge commit. The first
81 listed <commit> must be the merge itself; the remaining two or
a79c6b60
RS
82 more commits should be its parents. Convenient ways to produce
83 the desired set of revisions are to use the suffixes `^@` and
84 `^!`. If A is a merge commit, then `git diff A A^@`,
85 `git diff A^!` and `git show A` all give the same combined diff.
b7e10b2c 86
78b76d31
87'git diff' [<options>] <commit>..<commit> [--] [<path>...]::
88
a8fa6a08 89 This is synonymous to the earlier form (without the `..`) for
78b76d31
90 viewing the changes between two arbitrary <commit>. If <commit> on
91 one side is omitted, it will have the same effect as
92 using HEAD instead.
93
de613050 94'git diff' [<options>] <commit>\...<commit> [--] [<path>...]::
2b9232cc
MH
95
96 This form is to view the changes on the branch containing
97 and up to the second <commit>, starting at a common ancestor
a8fa6a08
DL
98 of both <commit>. `git diff A...B` is equivalent to
99 `git diff $(git merge-base A B) B`. You can omit any one
2b9232cc 100 of <commit>, which has the same effect as using HEAD instead.
f5e6b89b 101
ca8ed443 102Just in case you are doing something exotic, it should be
0c783f66 103noted that all of the <commit> in the above description, except
0f5a1d44 104in the `--merge-base` case and in the last two forms that use `..`
4fa1edb9 105notations, can be any <tree>. A tree of interest is the one pointed to
dada3864 106by the ref named `AUTO_MERGE`, which is written by the 'ort' merge
4fa1edb9
PB
107strategy upon hitting merge conflicts (see linkgit:git-merge[1]).
108Comparing the working tree with `AUTO_MERGE` shows changes you've made
109so far to resolve textual conflicts (see the examples below).
dfa2f22f 110
41a5564e 111For a more complete list of ways to spell <commit>, see
9d83e382 112"SPECIFYING REVISIONS" section in linkgit:gitrevisions[7].
2b9232cc 113However, "diff" is about comparing two _endpoints_, not ranges,
a8fa6a08
DL
114and the range notations (`<commit>..<commit>` and
115`<commit>...<commit>`) do not mean a range as defined in the
9d83e382 116"SPECIFYING RANGES" section in linkgit:gitrevisions[7].
7fc9d69f 117
de613050 118'git diff' [<options>] <blob> <blob>::
d7747bd5
KB
119
120 This form is to view the differences between the raw
121 contents of two blob objects.
122
7fc9d69f
JH
123OPTIONS
124-------
c1a95fa6 125:git-diff: 1
f5e6b89b 126include::diff-options.txt[]
35ef3a4c 127
47242cd1
AH
128-1 --base::
129-2 --ours::
130-3 --theirs::
131 Compare the working tree with the "base" version (stage #1),
132 "our branch" (stage #2) or "their branch" (stage #3). The
133 index contains these stages only for unmerged entries i.e.
134 while resolving conflicts. See linkgit:git-read-tree[1]
135 section "3-Way Merge" for detailed information.
136
137-0::
138 Omit diff output for unmerged entries and just show
139 "Unmerged". Can be used only when comparing the working tree
140 with the index.
141
35ef3a4c 142<path>...::
f5e6b89b
JH
143 The <paths> parameters, when given, are used to limit
144 the diff to the named paths (you can give directory
145 names and get diff for all files under them).
7fc9d69f 146
f552e51e 147
9e6c7230 148include::diff-format.txt[]
7fc9d69f 149
803f498c
JH
150EXAMPLES
151--------
152
153Various ways to check your working tree::
154+
155------------
48aeecdc 156$ git diff <1>
f2dd1c9a 157$ git diff --cached <2>
48aeecdc 158$ git diff HEAD <3>
4fa1edb9 159$ git diff AUTO_MERGE <4>
48aeecdc
SE
160------------
161+
434e6ef8
SH
162<1> Changes in the working tree not yet staged for the next commit.
163<2> Changes between the index and your last commit; what you
a8fa6a08 164 would be committing if you run `git commit` without `-a` option.
434e6ef8 165<3> Changes in the working tree since your last commit; what you
a8fa6a08 166 would be committing if you run `git commit -a`
4fa1edb9
PB
167<4> Changes in the working tree you've made to resolve textual
168 conflicts so far.
803f498c
JH
169
170Comparing with arbitrary commits::
171+
172------------
48aeecdc
SE
173$ git diff test <1>
174$ git diff HEAD -- ./test <2>
175$ git diff HEAD^ HEAD <3>
176------------
177+
434e6ef8 178<1> Instead of using the tip of the current branch, compare with the
ba170517 179 tip of "test" branch.
434e6ef8 180<2> Instead of comparing with the tip of "test" branch, compare with
ba170517
JNA
181 the tip of the current branch, but limit the comparison to the
182 file "test".
434e6ef8 183<3> Compare the version before the last commit and the last commit.
803f498c 184
2b9232cc
MH
185Comparing branches::
186+
187------------
188$ git diff topic master <1>
189$ git diff topic..master <2>
190$ git diff topic...master <3>
191------------
192+
193<1> Changes between the tips of the topic and the master branches.
194<2> Same as above.
06ada152 195<3> Changes that occurred on the master branch since when the topic
ba170517 196 branch was started off it.
803f498c
JH
197
198Limiting the diff output::
199+
200------------
48aeecdc 201$ git diff --diff-filter=MRC <1>
90ae710e 202$ git diff --name-status <2>
48aeecdc
SE
203$ git diff arch/i386 include/asm-i386 <3>
204------------
205+
a58088ab 206<1> Show only modification, rename, and copy, but not addition
ba170517 207 or deletion.
434e6ef8 208<2> Show only names and the nature of change, but not actual
ba170517 209 diff output.
434e6ef8 210<3> Limit diff output to named subtrees.
803f498c
JH
211
212Munging the diff output::
213+
214------------
48aeecdc
SE
215$ git diff --find-copies-harder -B -C <1>
216$ git diff -R <2>
217------------
218+
434e6ef8 219<1> Spend extra cycles to find renames, copies and complete
ba170517 220 rewrites (very expensive).
434e6ef8 221<2> Output diff in reverse.
803f498c 222
9274dea3
ÆAB
223CONFIGURATION
224-------------
225
226include::includes/cmd-config-section-all.txt[]
227
228include::config/diff.txt[]
229
3bdfd443
DA
230SEE ALSO
231--------
b77134b0
JN
232diff(1),
233linkgit:git-difftool[1],
234linkgit:git-log[1],
235linkgit:gitdiffcore[7],
236linkgit:git-format-patch[1],
b7e10b2c
CT
237linkgit:git-apply[1],
238linkgit:git-show[1]
803f498c 239
7fc9d69f
JH
240GIT
241---
9e1f0a85 242Part of the linkgit:git[1] suite