Junio C Hamano | 215a7ad | 2005-09-07 17:26:23 -0700 | [diff] [blame] | 1 | git-diff(1) |
| 2 | =========== |
Junio C Hamano | 7fc9d69 | 2005-08-23 01:49:47 -0700 | [diff] [blame] | 3 | |
| 4 | NAME |
| 5 | ---- |
Fredrik Kuivinen | 7bd7f28 | 2006-03-09 17:24:50 +0100 | [diff] [blame] | 6 | git-diff - Show changes between commits, commit and working tree, etc |
Junio C Hamano | 7fc9d69 | 2005-08-23 01:49:47 -0700 | [diff] [blame] | 7 | |
| 8 | |
| 9 | SYNOPSIS |
| 10 | -------- |
Jonathan Nieder | b1889c3 | 2008-06-30 01:09:04 -0500 | [diff] [blame] | 11 | 'git diff' [<common diff options>] <commit>{0,2} [--] [<path>...] |
Junio C Hamano | 7fc9d69 | 2005-08-23 01:49:47 -0700 | [diff] [blame] | 12 | |
| 13 | DESCRIPTION |
| 14 | ----------- |
Matthias Lederhofer | cfc01c0 | 2006-07-09 11:59:39 +0200 | [diff] [blame] | 15 | Show changes between two trees, a tree and the working tree, a |
| 16 | tree and the index file, or the index file and the working tree. |
Junio C Hamano | 7fc9d69 | 2005-08-23 01:49:47 -0700 | [diff] [blame] | 17 | |
Jonathan Nieder | b1889c3 | 2008-06-30 01:09:04 -0500 | [diff] [blame] | 18 | 'git diff' [--options] [--] [<path>...]:: |
Junio C Hamano | dfa2f22 | 2005-12-05 00:22:01 -0800 | [diff] [blame] | 19 | |
Junio C Hamano | f5e6b89 | 2006-12-14 00:03:18 -0800 | [diff] [blame] | 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 |
Dan McGee | 5162e69 | 2007-12-29 00:20:38 -0600 | [diff] [blame] | 24 | stage these changes by using linkgit:git-add[1]. |
Mike Hommey | 2b9232c | 2007-08-27 22:05:19 -0700 | [diff] [blame] | 25 | + |
| 26 | If exactly two paths are given, and at least one is untracked, |
| 27 | compare the two files / directories. This behavior can be |
| 28 | forced by --no-index. |
Johannes Schindelin | d516c2d | 2007-02-22 21:50:10 +0100 | [diff] [blame] | 29 | |
Jonathan Nieder | b1889c3 | 2008-06-30 01:09:04 -0500 | [diff] [blame] | 30 | 'git diff' [--options] --cached [<commit>] [--] [<path>...]:: |
Junio C Hamano | f5e6b89 | 2006-12-14 00:03:18 -0800 | [diff] [blame] | 31 | |
| 32 | This form is to view the changes you staged for the next |
Junio C Hamano | ce05454 | 2006-12-20 14:41:54 -0800 | [diff] [blame] | 33 | commit relative to the named <commit>. Typically you |
Junio C Hamano | f5e6b89 | 2006-12-14 00:03:18 -0800 | [diff] [blame] | 34 | would want comparison with the latest commit, so if you |
| 35 | do not give <commit>, it defaults to HEAD. |
David Symonds | 2baf185 | 2008-10-29 09:15:36 -0700 | [diff] [blame] | 36 | --staged is a synonym of --cached. |
Junio C Hamano | f5e6b89 | 2006-12-14 00:03:18 -0800 | [diff] [blame] | 37 | |
Jonathan Nieder | b1889c3 | 2008-06-30 01:09:04 -0500 | [diff] [blame] | 38 | 'git diff' [--options] <commit> [--] [<path>...]:: |
Junio C Hamano | f5e6b89 | 2006-12-14 00:03:18 -0800 | [diff] [blame] | 39 | |
| 40 | This form is to view the changes you have in your |
| 41 | working tree relative to the named <commit>. You can |
| 42 | use HEAD to compare it with the latest commit, or a |
| 43 | branch name to compare with the tip of a different |
| 44 | branch. |
| 45 | |
Jonathan Nieder | b1889c3 | 2008-06-30 01:09:04 -0500 | [diff] [blame] | 46 | 'git diff' [--options] <commit> <commit> [--] [<path>...]:: |
Junio C Hamano | f5e6b89 | 2006-12-14 00:03:18 -0800 | [diff] [blame] | 47 | |
Mike Hommey | 2b9232c | 2007-08-27 22:05:19 -0700 | [diff] [blame] | 48 | This is to view the changes between two arbitrary |
| 49 | <commit>. |
| 50 | |
Jonathan Nieder | b1889c3 | 2008-06-30 01:09:04 -0500 | [diff] [blame] | 51 | 'git diff' [--options] <commit>..<commit> [--] [<path>...]:: |
Mike Hommey | 2b9232c | 2007-08-27 22:05:19 -0700 | [diff] [blame] | 52 | |
| 53 | This is synonymous to the previous form. If <commit> on |
| 54 | one side is omitted, it will have the same effect as |
| 55 | using HEAD instead. |
| 56 | |
Jonathan Nieder | b1889c3 | 2008-06-30 01:09:04 -0500 | [diff] [blame] | 57 | 'git diff' [--options] <commit>\...<commit> [--] [<path>...]:: |
Mike Hommey | 2b9232c | 2007-08-27 22:05:19 -0700 | [diff] [blame] | 58 | |
| 59 | This form is to view the changes on the branch containing |
| 60 | and up to the second <commit>, starting at a common ancestor |
Jonathan Nieder | b1889c3 | 2008-06-30 01:09:04 -0500 | [diff] [blame] | 61 | of both <commit>. "git diff A\...B" is equivalent to |
| 62 | "git diff $(git-merge-base A B) B". You can omit any one |
Mike Hommey | 2b9232c | 2007-08-27 22:05:19 -0700 | [diff] [blame] | 63 | of <commit>, which has the same effect as using HEAD instead. |
Junio C Hamano | f5e6b89 | 2006-12-14 00:03:18 -0800 | [diff] [blame] | 64 | |
| 65 | Just in case if you are doing something exotic, it should be |
Junio C Hamano | 0c783f6 | 2007-08-28 21:47:08 -0700 | [diff] [blame] | 66 | noted that all of the <commit> in the above description, except |
| 67 | for the last two forms that use ".." notations, can be any |
| 68 | <tree-ish>. |
Junio C Hamano | f5e6b89 | 2006-12-14 00:03:18 -0800 | [diff] [blame] | 69 | |
Shawn O. Pearce | 41a5564 | 2007-01-17 21:08:09 -0500 | [diff] [blame] | 70 | For a more complete list of ways to spell <commit>, see |
Dan McGee | 5162e69 | 2007-12-29 00:20:38 -0600 | [diff] [blame] | 71 | "SPECIFYING REVISIONS" section in linkgit:git-rev-parse[1]. |
Mike Hommey | 2b9232c | 2007-08-27 22:05:19 -0700 | [diff] [blame] | 72 | However, "diff" is about comparing two _endpoints_, not ranges, |
| 73 | and the range notations ("<commit>..<commit>" and |
Junio C Hamano | 0c783f6 | 2007-08-28 21:47:08 -0700 | [diff] [blame] | 74 | "<commit>\...<commit>") do not mean a range as defined in the |
Dan McGee | 5162e69 | 2007-12-29 00:20:38 -0600 | [diff] [blame] | 75 | "SPECIFYING RANGES" section in linkgit:git-rev-parse[1]. |
Junio C Hamano | 7fc9d69 | 2005-08-23 01:49:47 -0700 | [diff] [blame] | 76 | |
| 77 | OPTIONS |
| 78 | ------- |
Sergei Organov | c1a95fa | 2007-11-15 16:19:29 +0300 | [diff] [blame] | 79 | :git-diff: 1 |
Junio C Hamano | f5e6b89 | 2006-12-14 00:03:18 -0800 | [diff] [blame] | 80 | include::diff-options.txt[] |
Junio C Hamano | 7fc9d69 | 2005-08-23 01:49:47 -0700 | [diff] [blame] | 81 | |
Junio C Hamano | 35ef3a4 | 2005-09-07 23:04:52 -0700 | [diff] [blame] | 82 | <path>...:: |
Junio C Hamano | f5e6b89 | 2006-12-14 00:03:18 -0800 | [diff] [blame] | 83 | The <paths> parameters, when given, are used to limit |
| 84 | the diff to the named paths (you can give directory |
| 85 | names and get diff for all files under them). |
Junio C Hamano | 7fc9d69 | 2005-08-23 01:49:47 -0700 | [diff] [blame] | 86 | |
David Kågedal | f552e51 | 2009-07-28 10:32:18 +0200 | [diff] [blame] | 87 | |
Gerrit Pape | 9e6c723 | 2007-10-31 13:59:16 +0000 | [diff] [blame] | 88 | include::diff-format.txt[] |
Junio C Hamano | 7fc9d69 | 2005-08-23 01:49:47 -0700 | [diff] [blame] | 89 | |
Junio C Hamano | 803f498 | 2005-12-13 01:54:15 -0800 | [diff] [blame] | 90 | EXAMPLES |
| 91 | -------- |
| 92 | |
| 93 | Various ways to check your working tree:: |
| 94 | + |
| 95 | ------------ |
Sean Estabrooks | 48aeecd | 2006-04-28 09:15:05 -0400 | [diff] [blame] | 96 | $ git diff <1> |
Junio C Hamano | f2dd1c9 | 2006-12-13 01:33:43 -0800 | [diff] [blame] | 97 | $ git diff --cached <2> |
Sean Estabrooks | 48aeecd | 2006-04-28 09:15:05 -0400 | [diff] [blame] | 98 | $ git diff HEAD <3> |
| 99 | ------------ |
| 100 | + |
Steve Hoelzer | 434e6ef | 2007-08-01 10:43:06 -0500 | [diff] [blame] | 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 |
Junio C Hamano | 803f498 | 2005-12-13 01:54:15 -0800 | [diff] [blame] | 103 | would be committing if you run "git commit" without "-a" option. |
Steve Hoelzer | 434e6ef | 2007-08-01 10:43:06 -0500 | [diff] [blame] | 104 | <3> Changes in the working tree since your last commit; what you |
Junio C Hamano | 803f498 | 2005-12-13 01:54:15 -0800 | [diff] [blame] | 105 | would be committing if you run "git commit -a" |
Junio C Hamano | 803f498 | 2005-12-13 01:54:15 -0800 | [diff] [blame] | 106 | |
| 107 | Comparing with arbitrary commits:: |
| 108 | + |
| 109 | ------------ |
Sean Estabrooks | 48aeecd | 2006-04-28 09:15:05 -0400 | [diff] [blame] | 110 | $ git diff test <1> |
| 111 | $ git diff HEAD -- ./test <2> |
| 112 | $ git diff HEAD^ HEAD <3> |
| 113 | ------------ |
| 114 | + |
Steve Hoelzer | 434e6ef | 2007-08-01 10:43:06 -0500 | [diff] [blame] | 115 | <1> Instead of using the tip of the current branch, compare with the |
Junio C Hamano | 803f498 | 2005-12-13 01:54:15 -0800 | [diff] [blame] | 116 | tip of "test" branch. |
Steve Hoelzer | 434e6ef | 2007-08-01 10:43:06 -0500 | [diff] [blame] | 117 | <2> Instead of comparing with the tip of "test" branch, compare with |
Junio C Hamano | 8943867 | 2005-12-29 01:20:06 -0800 | [diff] [blame] | 118 | the tip of the current branch, but limit the comparison to the |
Junio C Hamano | 803f498 | 2005-12-13 01:54:15 -0800 | [diff] [blame] | 119 | file "test". |
Steve Hoelzer | 434e6ef | 2007-08-01 10:43:06 -0500 | [diff] [blame] | 120 | <3> Compare the version before the last commit and the last commit. |
Junio C Hamano | 803f498 | 2005-12-13 01:54:15 -0800 | [diff] [blame] | 121 | |
Mike Hommey | 2b9232c | 2007-08-27 22:05:19 -0700 | [diff] [blame] | 122 | Comparing 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. |
Ralf Wildenhues | 06ada15 | 2007-10-09 23:00:03 +0200 | [diff] [blame] | 132 | <3> Changes that occurred on the master branch since when the topic |
Mike Hommey | 2b9232c | 2007-08-27 22:05:19 -0700 | [diff] [blame] | 133 | branch was started off it. |
Junio C Hamano | 803f498 | 2005-12-13 01:54:15 -0800 | [diff] [blame] | 134 | |
| 135 | Limiting the diff output:: |
| 136 | + |
| 137 | ------------ |
Sean Estabrooks | 48aeecd | 2006-04-28 09:15:05 -0400 | [diff] [blame] | 138 | $ git diff --diff-filter=MRC <1> |
Jeff King | 90ae710 | 2007-07-28 20:24:27 -0400 | [diff] [blame] | 139 | $ git diff --name-status <2> |
Sean Estabrooks | 48aeecd | 2006-04-28 09:15:05 -0400 | [diff] [blame] | 140 | $ git diff arch/i386 include/asm-i386 <3> |
| 141 | ------------ |
| 142 | + |
Steve Hoelzer | 434e6ef | 2007-08-01 10:43:06 -0500 | [diff] [blame] | 143 | <1> Show only modification, rename and copy, but not addition |
Junio C Hamano | 803f498 | 2005-12-13 01:54:15 -0800 | [diff] [blame] | 144 | nor deletion. |
Steve Hoelzer | 434e6ef | 2007-08-01 10:43:06 -0500 | [diff] [blame] | 145 | <2> Show only names and the nature of change, but not actual |
Jeff King | 90ae710 | 2007-07-28 20:24:27 -0400 | [diff] [blame] | 146 | diff output. |
Steve Hoelzer | 434e6ef | 2007-08-01 10:43:06 -0500 | [diff] [blame] | 147 | <3> Limit diff output to named subtrees. |
Junio C Hamano | 803f498 | 2005-12-13 01:54:15 -0800 | [diff] [blame] | 148 | |
| 149 | Munging the diff output:: |
| 150 | + |
| 151 | ------------ |
Sean Estabrooks | 48aeecd | 2006-04-28 09:15:05 -0400 | [diff] [blame] | 152 | $ git diff --find-copies-harder -B -C <1> |
| 153 | $ git diff -R <2> |
| 154 | ------------ |
| 155 | + |
Steve Hoelzer | 434e6ef | 2007-08-01 10:43:06 -0500 | [diff] [blame] | 156 | <1> Spend extra cycles to find renames, copies and complete |
Junio C Hamano | 803f498 | 2005-12-13 01:54:15 -0800 | [diff] [blame] | 157 | rewrites (very expensive). |
Steve Hoelzer | 434e6ef | 2007-08-01 10:43:06 -0500 | [diff] [blame] | 158 | <2> Output diff in reverse. |
Junio C Hamano | 803f498 | 2005-12-13 01:54:15 -0800 | [diff] [blame] | 159 | |
| 160 | |
Junio C Hamano | 7fc9d69 | 2005-08-23 01:49:47 -0700 | [diff] [blame] | 161 | Author |
| 162 | ------ |
| 163 | Written by Linus Torvalds <torvalds@osdl.org> |
| 164 | |
| 165 | Documentation |
| 166 | -------------- |
| 167 | Documentation by Junio C Hamano and the git-list <git@vger.kernel.org>. |
| 168 | |
| 169 | GIT |
| 170 | --- |
Christian Couder | 9e1f0a8 | 2008-06-06 09:07:32 +0200 | [diff] [blame] | 171 | Part of the linkgit:git[1] suite |