]> git.ipfire.org Git - thirdparty/git.git/blame - Documentation/git-diff.txt
Documentation: prepare to be consistent about "git-" versus "git "
[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--------
b8105375 11'git-diff' [<common diff options>] <commit>{0,2} [--] [<path>...]
7fc9d69f
JH
12
13DESCRIPTION
14-----------
cfc01c03
ML
15Show changes between two trees, a tree and the working tree, a
16tree and the index file, or the index file and the working tree.
35ef3a4c 17
f5e6b89b 18'git-diff' [--options] [--] [<path>...]::
dfa2f22f 19
f5e6b89b
JH
20 This form is to view the changes you made relative to
21 the index (staging area for the next commit). In other
22 words, the differences are what you _could_ tell git to
23 further add to the index but you still haven't. You can
5162e697 24 stage these changes by using linkgit:git-add[1].
2b9232cc
MH
25+
26If exactly two paths are given, and at least one is untracked,
27compare the two files / directories. This behavior can be
28forced by --no-index.
d516c2d1 29
f5e6b89b
JH
30'git-diff' [--options] --cached [<commit>] [--] [<path>...]::
31
32 This form is to view the changes you staged for the next
ce054545 33 commit relative to the named <commit>. Typically you
f5e6b89b
JH
34 would want comparison with the latest commit, so if you
35 do not give <commit>, it defaults to HEAD.
36
e697e4cd 37'git-diff' [--options] <commit> [--] [<path>...]::
f5e6b89b
JH
38
39 This form is to view the changes you have in your
40 working tree relative to the named <commit>. You can
41 use HEAD to compare it with the latest commit, or a
42 branch name to compare with the tip of a different
43 branch.
44
e697e4cd 45'git-diff' [--options] <commit> <commit> [--] [<path>...]::
f5e6b89b 46
2b9232cc
MH
47 This is to view the changes between two arbitrary
48 <commit>.
49
50'git-diff' [--options] <commit>..<commit> [--] [<path>...]::
51
52 This is synonymous to the previous form. If <commit> on
53 one side is omitted, it will have the same effect as
54 using HEAD instead.
55
0c783f66 56'git-diff' [--options] <commit>\...<commit> [--] [<path>...]::
2b9232cc
MH
57
58 This form is to view the changes on the branch containing
59 and up to the second <commit>, starting at a common ancestor
0c783f66 60 of both <commit>. "git-diff A\...B" is equivalent to
2b9232cc
MH
61 "git-diff $(git-merge-base A B) B". You can omit any one
62 of <commit>, which has the same effect as using HEAD instead.
f5e6b89b
JH
63
64Just in case if you are doing something exotic, it should be
0c783f66
JH
65noted that all of the <commit> in the above description, except
66for the last two forms that use ".." notations, can be any
67<tree-ish>.
dfa2f22f 68
41a5564e 69For a more complete list of ways to spell <commit>, see
5162e697 70"SPECIFYING REVISIONS" section in linkgit:git-rev-parse[1].
2b9232cc
MH
71However, "diff" is about comparing two _endpoints_, not ranges,
72and the range notations ("<commit>..<commit>" and
0c783f66 73"<commit>\...<commit>") do not mean a range as defined in the
5162e697 74"SPECIFYING RANGES" section in linkgit:git-rev-parse[1].
7fc9d69f
JH
75
76OPTIONS
77-------
c1a95fa6 78:git-diff: 1
f5e6b89b 79include::diff-options.txt[]
35ef3a4c
JH
80
81<path>...::
f5e6b89b
JH
82 The <paths> parameters, when given, are used to limit
83 the diff to the named paths (you can give directory
84 names and get diff for all files under them).
7fc9d69f 85
9e6c7230
GP
86Output format
87-------------
88include::diff-format.txt[]
7fc9d69f 89
803f498c
JH
90EXAMPLES
91--------
92
93Various ways to check your working tree::
94+
95------------
48aeecdc 96$ git diff <1>
f2dd1c9a 97$ git diff --cached <2>
48aeecdc
SE
98$ git diff HEAD <3>
99------------
100+
434e6ef8
SH
101<1> Changes in the working tree not yet staged for the next commit.
102<2> Changes between the index and your last commit; what you
803f498c 103would be committing if you run "git commit" without "-a" option.
434e6ef8 104<3> Changes in the working tree since your last commit; what you
803f498c 105would be committing if you run "git commit -a"
803f498c
JH
106
107Comparing with arbitrary commits::
108+
109------------
48aeecdc
SE
110$ git diff test <1>
111$ git diff HEAD -- ./test <2>
112$ git diff HEAD^ HEAD <3>
113------------
114+
434e6ef8 115<1> Instead of using the tip of the current branch, compare with the
803f498c 116tip of "test" branch.
434e6ef8 117<2> Instead of comparing with the tip of "test" branch, compare with
89438677 118the tip of the current branch, but limit the comparison to the
803f498c 119file "test".
434e6ef8 120<3> Compare the version before the last commit and the last commit.
803f498c 121
2b9232cc
MH
122Comparing branches::
123+
124------------
125$ git diff topic master <1>
126$ git diff topic..master <2>
127$ git diff topic...master <3>
128------------
129+
130<1> Changes between the tips of the topic and the master branches.
131<2> Same as above.
06ada152 132<3> Changes that occurred on the master branch since when the topic
2b9232cc 133branch was started off it.
803f498c
JH
134
135Limiting the diff output::
136+
137------------
48aeecdc 138$ git diff --diff-filter=MRC <1>
90ae710e 139$ git diff --name-status <2>
48aeecdc
SE
140$ git diff arch/i386 include/asm-i386 <3>
141------------
142+
434e6ef8 143<1> Show only modification, rename and copy, but not addition
803f498c 144nor deletion.
434e6ef8 145<2> Show only names and the nature of change, but not actual
90ae710e 146diff output.
434e6ef8 147<3> Limit diff output to named subtrees.
803f498c
JH
148
149Munging the diff output::
150+
151------------
48aeecdc
SE
152$ git diff --find-copies-harder -B -C <1>
153$ git diff -R <2>
154------------
155+
434e6ef8 156<1> Spend extra cycles to find renames, copies and complete
803f498c 157rewrites (very expensive).
434e6ef8 158<2> Output diff in reverse.
803f498c
JH
159
160
7fc9d69f
JH
161Author
162------
163Written by Linus Torvalds <torvalds@osdl.org>
164
165Documentation
166--------------
167Documentation by Junio C Hamano and the git-list <git@vger.kernel.org>.
168
169GIT
170---
9e1f0a85 171Part of the linkgit:git[1] suite