Junio C Hamano | ff97979 | 2007-11-16 10:11:30 | [diff] [blame] | 1 | // Please don't remove this comment as asciidoc behaves badly when |
| 2 | // the first non-empty line is ifdef/ifndef. The symptom is that |
| 3 | // without this comment the <git-diff-core> attribute conditionally |
| 4 | // defined below ends up being defined unconditionally. |
| 5 | // Last checked with asciidoc 7.0.2. |
| 6 | |
| 7 | ifndef::git-format-patch[] |
| 8 | ifndef::git-diff[] |
Junio C Hamano | 00b8b63 | 2007-12-07 09:50:49 | [diff] [blame] | 9 | ifndef::git-log[] |
Junio C Hamano | ff97979 | 2007-11-16 10:11:30 | [diff] [blame] | 10 | :git-diff-core: 1 |
Junio C Hamano | 00b8b63 | 2007-12-07 09:50:49 | [diff] [blame] | 11 | endif::git-log[] |
Junio C Hamano | ff97979 | 2007-11-16 10:11:30 | [diff] [blame] | 12 | endif::git-diff[] |
| 13 | endif::git-format-patch[] |
| 14 | |
| 15 | ifdef::git-format-patch[] |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 16 | -p:: |
Junio C Hamano | ff97979 | 2007-11-16 10:11:30 | [diff] [blame] | 17 | Generate patches without diffstat. |
| 18 | endif::git-format-patch[] |
| 19 | |
| 20 | ifndef::git-format-patch[] |
| 21 | -p:: |
| 22 | Generate patch (see section on generating patches). |
| 23 | {git-diff? This is the default.} |
| 24 | endif::git-format-patch[] |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 25 | |
| 26 | -u:: |
| 27 | Synonym for "-p". |
| 28 | |
Junio C Hamano | 6936156 | 2007-07-26 02:14:34 | [diff] [blame] | 29 | -U<n>:: |
| 30 | Shorthand for "--unified=<n>". |
| 31 | |
| 32 | --unified=<n>:: |
| 33 | Generate diffs with <n> lines of context instead of |
| 34 | the usual three. Implies "-p". |
| 35 | |
Junio C Hamano | 9ae1a06 | 2006-07-10 08:12:34 | [diff] [blame] | 36 | --raw:: |
| 37 | Generate the raw format. |
Junio C Hamano | ff97979 | 2007-11-16 10:11:30 | [diff] [blame] | 38 | {git-diff-core? This is the default.} |
Junio C Hamano | 9ae1a06 | 2006-07-10 08:12:34 | [diff] [blame] | 39 | |
Junio C Hamano | 54559c8 | 2006-04-13 07:45:12 | [diff] [blame] | 40 | --patch-with-raw:: |
Junio C Hamano | 9ae1a06 | 2006-07-10 08:12:34 | [diff] [blame] | 41 | Synonym for "-p --raw". |
Junio C Hamano | 54559c8 | 2006-04-13 07:45:12 | [diff] [blame] | 42 | |
Junio C Hamano | 4a9a76a | 2006-10-01 05:40:29 | [diff] [blame] | 43 | --stat[=width[,name-width]]:: |
| 44 | Generate a diffstat. You can override the default |
| 45 | output width for 80-column terminal by "--stat=width". |
| 46 | The width of the filename part can be controlled by |
| 47 | giving another width to it separated by a comma. |
Junio C Hamano | ba7c8d8 | 2006-04-15 06:17:42 | [diff] [blame] | 48 | |
Junio C Hamano | fbe0052 | 2006-10-19 05:58:48 | [diff] [blame] | 49 | --numstat:: |
| 50 | Similar to \--stat, but shows number of added and |
| 51 | deleted lines in decimal notation and pathname without |
Junio C Hamano | d793de5 | 2006-12-26 09:11:43 | [diff] [blame] | 52 | abbreviation, to make it more machine friendly. For |
| 53 | binary files, outputs two `-` instead of saying |
| 54 | `0 0`. |
Junio C Hamano | fbe0052 | 2006-10-19 05:58:48 | [diff] [blame] | 55 | |
Junio C Hamano | 7d23f5e | 2006-12-16 07:44:04 | [diff] [blame] | 56 | --shortstat:: |
| 57 | Output only the last line of the --stat format containing total |
| 58 | number of modified files, as well as number of added and deleted |
| 59 | lines. |
| 60 | |
Junio C Hamano | 6a45be9 | 2008-04-22 08:19:03 | [diff] [blame] | 61 | --dirstat[=limit]:: |
Junio C Hamano | a2f4662 | 2008-09-03 05:20:31 | [diff] [blame] | 62 | Output the distribution of relative amount of changes (number of lines added or |
| 63 | removed) for each sub-directory. Directories with changes below |
| 64 | a cut-off percent (3% by default) are not shown. The cut-off percent |
| 65 | can be set with "--dirstat=limit". Changes in a child directory is not |
| 66 | counted for the parent directory, unless "--cumulative" is used. |
Junio C Hamano | 6a45be9 | 2008-04-22 08:19:03 | [diff] [blame] | 67 | |
Junio C Hamano | a476efa | 2008-10-10 15:31:42 | [diff] [blame] | 68 | --dirstat-by-file[=limit]:: |
| 69 | Same as --dirstat, but counts changed files instead of lines. |
| 70 | |
Junio C Hamano | 6959c6c | 2006-05-17 10:34:11 | [diff] [blame] | 71 | --summary:: |
| 72 | Output a condensed summary of extended header information |
| 73 | such as creations, renames and mode changes. |
| 74 | |
Junio C Hamano | d1308c9 | 2006-04-16 11:01:09 | [diff] [blame] | 75 | --patch-with-stat:: |
Junio C Hamano | 9ae1a06 | 2006-07-10 08:12:34 | [diff] [blame] | 76 | Synonym for "-p --stat". |
Junio C Hamano | ff97979 | 2007-11-16 10:11:30 | [diff] [blame] | 77 | {git-format-patch? This is the default.} |
Junio C Hamano | d1308c9 | 2006-04-16 11:01:09 | [diff] [blame] | 78 | |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 79 | -z:: |
Junio C Hamano | b968dbb | 2007-07-27 07:26:40 | [diff] [blame] | 80 | NUL-line termination on output. This affects the --raw |
| 81 | output field terminator. Also output from commands such |
| 82 | as "git-log" will be delimited with NUL between commits. |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 83 | |
| 84 | --name-only:: |
| 85 | Show only names of changed files. |
| 86 | |
| 87 | --name-status:: |
Junio C Hamano | a9aee78 | 2008-04-23 16:09:20 | [diff] [blame] | 88 | Show only names and status of changed files. See the description |
| 89 | of the `--diff-filter` option on what the status letters mean. |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 90 | |
Junio C Hamano | 9ae1a06 | 2006-07-10 08:12:34 | [diff] [blame] | 91 | --color:: |
| 92 | Show colored diff. |
| 93 | |
| 94 | --no-color:: |
| 95 | Turn off colored diff, even when the configuration file |
| 96 | gives the default to color output. |
| 97 | |
Junio C Hamano | 85e45fa | 2006-08-13 07:47:41 | [diff] [blame] | 98 | --color-words:: |
| 99 | Show colored word diff, i.e. color words which have changed. |
| 100 | |
Junio C Hamano | 9ae1a06 | 2006-07-10 08:12:34 | [diff] [blame] | 101 | --no-renames:: |
| 102 | Turn off rename detection, even when the configuration |
| 103 | file gives the default to do so. |
| 104 | |
Junio C Hamano | a890c4f | 2007-01-28 10:29:21 | [diff] [blame] | 105 | --check:: |
| 106 | Warn if changes introduce trailing whitespace |
Junio C Hamano | 3dac504 | 2007-12-15 08:40:54 | [diff] [blame] | 107 | or an indent that uses a space before a tab. Exits with |
| 108 | non-zero status if problems are found. Not compatible with |
| 109 | --exit-code. |
Junio C Hamano | a890c4f | 2007-01-28 10:29:21 | [diff] [blame] | 110 | |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 111 | --full-index:: |
Junio C Hamano | 5cf43ca | 2008-08-20 09:14:14 | [diff] [blame] | 112 | Instead of the first handful of characters, show the full |
| 113 | pre- and post-image blob object names on the "index" |
| 114 | line when generating patch format output. |
Junio C Hamano | 9ae1a06 | 2006-07-10 08:12:34 | [diff] [blame] | 115 | |
| 116 | --binary:: |
| 117 | In addition to --full-index, output "binary diff" that |
| 118 | can be applied with "git apply". |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 119 | |
| 120 | --abbrev[=<n>]:: |
| 121 | Instead of showing the full 40-byte hexadecimal object |
| 122 | name in diff-raw format output and diff-tree header |
Junio C Hamano | 235a91e | 2006-01-07 01:13:58 | [diff] [blame] | 123 | lines, show only handful hexdigits prefix. This is |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 124 | independent of --full-index option above, which controls |
| 125 | the diff-patch output format. Non default number of |
| 126 | digits can be specified with --abbrev=<n>. |
| 127 | |
| 128 | -B:: |
| 129 | Break complete rewrite changes into pairs of delete and create. |
| 130 | |
| 131 | -M:: |
| 132 | Detect renames. |
| 133 | |
| 134 | -C:: |
Junio C Hamano | 16f9887 | 2007-06-12 16:09:14 | [diff] [blame] | 135 | Detect copies as well as renames. See also `--find-copies-harder`. |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 136 | |
Junio C Hamano | 6ec31b9 | 2006-02-10 05:52:01 | [diff] [blame] | 137 | --diff-filter=[ACDMRTUXB*]:: |
| 138 | Select only files that are Added (`A`), Copied (`C`), |
| 139 | Deleted (`D`), Modified (`M`), Renamed (`R`), have their |
| 140 | type (mode) changed (`T`), are Unmerged (`U`), are |
| 141 | Unknown (`X`), or have had their pairing Broken (`B`). |
| 142 | Any combination of the filter characters may be used. |
| 143 | When `*` (All-or-none) is added to the combination, all |
| 144 | paths are selected if there is any file that matches |
| 145 | other criteria in the comparison; if there is no file |
| 146 | that matches other criteria, nothing is selected. |
| 147 | |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 148 | --find-copies-harder:: |
Junio C Hamano | 16f9887 | 2007-06-12 16:09:14 | [diff] [blame] | 149 | For performance reasons, by default, `-C` option finds copies only |
Junio C Hamano | a77a513 | 2007-06-08 16:13:44 | [diff] [blame] | 150 | if the original file of the copy was modified in the same |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 151 | changeset. This flag makes the command |
| 152 | inspect unmodified files as candidates for the source of |
| 153 | copy. This is a very expensive operation for large |
Junio C Hamano | 16f9887 | 2007-06-12 16:09:14 | [diff] [blame] | 154 | projects, so use it with caution. Giving more than one |
| 155 | `-C` option has the same effect. |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 156 | |
| 157 | -l<num>:: |
| 158 | -M and -C options require O(n^2) processing time where n |
| 159 | is the number of potential rename/copy targets. This |
| 160 | option prevents rename/copy detection from running if |
| 161 | the number of rename/copy targets exceeds the specified |
| 162 | number. |
| 163 | |
| 164 | -S<string>:: |
| 165 | Look for differences that contain the change in <string>. |
| 166 | |
| 167 | --pickaxe-all:: |
| 168 | When -S finds a change, show all the changes in that |
| 169 | changeset, not just the files that contain the change |
| 170 | in <string>. |
| 171 | |
Junio C Hamano | bfe9e75 | 2006-04-05 21:43:28 | [diff] [blame] | 172 | --pickaxe-regex:: |
| 173 | Make the <string> not a plain string but an extended POSIX |
| 174 | regex to match. |
| 175 | |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 176 | -O<orderfile>:: |
| 177 | Output the patch in the order specified in the |
| 178 | <orderfile>, which has one shell glob pattern per line. |
| 179 | |
| 180 | -R:: |
| 181 | Swap two inputs; that is, show differences from index or |
| 182 | on-disk file to tree contents. |
| 183 | |
Junio C Hamano | 24bc09a | 2008-02-28 00:27:44 | [diff] [blame] | 184 | --relative[=<path>]:: |
| 185 | When run from a subdirectory of the project, it can be |
| 186 | told to exclude changes outside the directory and show |
| 187 | pathnames relative to it with this option. When you are |
| 188 | not in a subdirectory (e.g. in a bare repository), you |
| 189 | can name which subdirectory to make the output relative |
| 190 | to by giving a <path> as an argument. |
| 191 | |
Junio C Hamano | c26f548 | 2006-07-09 09:38:14 | [diff] [blame] | 192 | --text:: |
| 193 | Treat all files as text. |
| 194 | |
| 195 | -a:: |
| 196 | Shorthand for "--text". |
| 197 | |
Junio C Hamano | fd46896 | 2007-02-14 23:45:04 | [diff] [blame] | 198 | --ignore-space-at-eol:: |
Junio C Hamano | 3a70234 | 2007-12-12 21:34:02 | [diff] [blame] | 199 | Ignore changes in whitespace at EOL. |
Junio C Hamano | fd46896 | 2007-02-14 23:45:04 | [diff] [blame] | 200 | |
Junio C Hamano | d9c2d2f | 2006-12-06 08:59:07 | [diff] [blame] | 201 | --ignore-space-change:: |
Junio C Hamano | 3a70234 | 2007-12-12 21:34:02 | [diff] [blame] | 202 | Ignore changes in amount of whitespace. This ignores whitespace |
| 203 | at line end, and considers all other sequences of one or |
| 204 | more whitespace characters to be equivalent. |
Junio C Hamano | d9c2d2f | 2006-12-06 08:59:07 | [diff] [blame] | 205 | |
| 206 | -b:: |
| 207 | Shorthand for "--ignore-space-change". |
| 208 | |
| 209 | --ignore-all-space:: |
Junio C Hamano | 3a70234 | 2007-12-12 21:34:02 | [diff] [blame] | 210 | Ignore whitespace when comparing lines. This ignores |
| 211 | differences even if one line has whitespace where the other |
Junio C Hamano | d9c2d2f | 2006-12-06 08:59:07 | [diff] [blame] | 212 | line has none. |
| 213 | |
| 214 | -w:: |
| 215 | Shorthand for "--ignore-all-space". |
| 216 | |
Junio C Hamano | 48fd2f6 | 2007-03-19 02:02:30 | [diff] [blame] | 217 | --exit-code:: |
| 218 | Make the program exit with codes similar to diff(1). |
| 219 | That is, it exits with 1 if there were differences and |
| 220 | 0 means no differences. |
| 221 | |
Junio C Hamano | 35e5755 | 2007-03-25 07:54:35 | [diff] [blame] | 222 | --quiet:: |
| 223 | Disable all output of the program. Implies --exit-code. |
| 224 | |
Junio C Hamano | bb0f404 | 2007-07-04 06:41:40 | [diff] [blame] | 225 | --ext-diff:: |
| 226 | Allow an external diff helper to be executed. If you set an |
Junio C Hamano | 35738e8 | 2008-01-07 07:55:46 | [diff] [blame] | 227 | external diff driver with linkgit:gitattributes[5], you need |
| 228 | to use this option with linkgit:git-log[1] and friends. |
Junio C Hamano | bb0f404 | 2007-07-04 06:41:40 | [diff] [blame] | 229 | |
| 230 | --no-ext-diff:: |
| 231 | Disallow external diff drivers. |
| 232 | |
Junio C Hamano | dfccbb0 | 2008-05-26 01:16:14 | [diff] [blame] | 233 | --ignore-submodules:: |
| 234 | Ignore changes to submodules in the diff generation. |
| 235 | |
Junio C Hamano | e27cbd2 | 2007-12-21 17:57:33 | [diff] [blame] | 236 | --src-prefix=<prefix>:: |
| 237 | Show the given source prefix instead of "a/". |
| 238 | |
| 239 | --dst-prefix=<prefix>:: |
| 240 | Show the given destination prefix instead of "b/". |
| 241 | |
| 242 | --no-prefix:: |
| 243 | Do not show any source or destination prefix. |
| 244 | |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 245 | For more detailed explanation on these common options, see also |
Junio C Hamano | fce7c7e | 2008-07-02 03:06:38 | [diff] [blame] | 246 | linkgit:gitdiffcore[7]. |