.\" ** You probably do not want to edit this file directly ** .\" It was generated using the DocBook XSL Stylesheets (version 1.69.1). .\" Instead of manually editing it, you probably should edit the DocBook XML .\" source for it and then use the DocBook XSL Stylesheets to regenerate it. .TH "GIT\-DIFF" "1" "09/19/2007" "Git 1.5.3.2" "Git Manual" .\" disable hyphenation .nh .\" disable justification (adjust text to left margin only) .ad l .SH "NAME" git\-diff \- Show changes between commits, commit and working tree, etc .SH "SYNOPSIS" \fIgit\-diff\fR [] {0,2} [\-\-] [\&...] .SH "DESCRIPTION" Show changes between two trees, a tree and the working tree, a tree and the index file, or the index file and the working tree. .TP \fIgit\-diff\fR [\-\-options] [\-\-] [\&...] This form is to view the changes you made relative to the index (staging area for the next commit). In other words, the differences are what you _could_ tell git to further add to the index but you still haven't. You can stage these changes by using \fBgit\-add\fR(1). If exactly two paths are given, and at least one is untracked, compare the two files / directories. This behavior can be forced by \-\-no\-index. .TP \fIgit\-diff\fR [\-\-options] \-\-cached [] [\-\-] [\&...] This form is to view the changes you staged for the next commit relative to the named . Typically you would want comparison with the latest commit, so if you do not give , it defaults to HEAD. .TP \fIgit\-diff\fR [\-\-options] [\-\-] [\&...] This form is to view the changes you have in your working tree relative to the named . You can use HEAD to compare it with the latest commit, or a branch name to compare with the tip of a different branch. .TP \fIgit\-diff\fR [\-\-options] [\-\-] [\&...] This is to view the changes between two arbitrary . .TP \fIgit\-diff\fR [\-\-options] .. [\-\-] [\&...] This is synonymous to the previous form. If on one side is omitted, it will have the same effect as using HEAD instead. .TP \fIgit\-diff\fR [\-\-options] ... [\-\-] [\&...] This form is to view the changes on the branch containing and up to the second , starting at a common ancestor of both . "git\-diff A...B" is equivalent to "git\-diff $(git\-merge\-base A B) B". You can omit any one of , which has the same effect as using HEAD instead. Just in case if you are doing something exotic, it should be noted that all of the in the above description, except for the last two forms that use ".." notations, can be any . For a more complete list of ways to spell , see "SPECIFYING REVISIONS" section in \fBgit\-rev\-parse\fR(1). However, "diff" is about comparing two _endpoints_, not ranges, and the range notations (".." and "...") do not mean a range as defined in the "SPECIFYING RANGES" section in \fBgit\-rev\-parse\fR(1). .SH "OPTIONS" .TP \-p Generate patch (see section on generating patches) .TP \-u Synonym for "\-p". .TP \-U Shorthand for "\-\-unified=". .TP \-\-unified= Generate diffs with lines of context instead of the usual three. Implies "\-p". .TP \-\-raw Generate the raw format. .TP \-\-patch\-with\-raw Synonym for "\-p \-\-raw". .TP \-\-stat[=width[,name\-width]] Generate a diffstat. You can override the default output width for 80\-column terminal by "\-\-stat=width". The width of the filename part can be controlled by giving another width to it separated by a comma. .TP \-\-numstat Similar to \-\-stat, but shows number of added and deleted lines in decimal notation and pathname without abbreviation, to make it more machine friendly. For binary files, outputs two \- instead of saying 0 0. .TP \-\-shortstat Output only the last line of the \-\-stat format containing total number of modified files, as well as number of added and deleted lines. .TP \-\-summary Output a condensed summary of extended header information such as creations, renames and mode changes. .TP \-\-patch\-with\-stat Synonym for "\-p \-\-stat". .TP \-z NUL\-line termination on output. This affects the \-\-raw output field terminator. Also output from commands such as "git\-log" will be delimited with NUL between commits. .TP \-\-name\-only Show only names of changed files. .TP \-\-name\-status Show only names and status of changed files. .TP \-\-color Show colored diff. .TP \-\-no\-color Turn off colored diff, even when the configuration file gives the default to color output. .TP \-\-color\-words Show colored word diff, i.e. color words which have changed. .TP \-\-no\-renames Turn off rename detection, even when the configuration file gives the default to do so. .TP \-\-check Warn if changes introduce trailing whitespace or an indent that uses a space before a tab. .TP \-\-full\-index Instead of the first handful characters, show full object name of pre\- and post\-image blob on the "index" line when generating a patch format output. .TP \-\-binary In addition to \-\-full\-index, output "binary diff" that can be applied with "git apply". .TP \-\-abbrev[=] Instead of showing the full 40\-byte hexadecimal object name in diff\-raw format output and diff\-tree header lines, show only handful hexdigits prefix. This is independent of \-\-full\-index option above, which controls the diff\-patch output format. Non default number of digits can be specified with \-\-abbrev=. .TP \-B Break complete rewrite changes into pairs of delete and create. .TP \-M Detect renames. .TP \-C Detect copies as well as renames. See also \-\-find\-copies\-harder. .TP \-\-diff\-filter=[ACDMRTUXB*] Select only files that are Added (A), Copied (C), Deleted (D), Modified (M), Renamed (R), have their type (mode) changed (T), are Unmerged (U), are Unknown (X), or have had their pairing Broken (B). Any combination of the filter characters may be used. When * (All\-or\-none) is added to the combination, all paths are selected if there is any file that matches other criteria in the comparison; if there is no file that matches other criteria, nothing is selected. .TP \-\-find\-copies\-harder For performance reasons, by default, \-C option finds copies only if the original file of the copy was modified in the same changeset. This flag makes the command inspect unmodified files as candidates for the source of copy. This is a very expensive operation for large projects, so use it with caution. Giving more than one \-C option has the same effect. .TP \-l \-M and \-C options require O(n^2) processing time where n is the number of potential rename/copy targets. This option prevents rename/copy detection from running if the number of rename/copy targets exceeds the specified number. .TP \-S Look for differences that contain the change in . .TP \-\-pickaxe\-all When \-S finds a change, show all the changes in that changeset, not just the files that contain the change in . .TP \-\-pickaxe\-regex Make the not a plain string but an extended POSIX regex to match. .TP \-O Output the patch in the order specified in the , which has one shell glob pattern per line. .TP \-R Swap two inputs; that is, show differences from index or on\-disk file to tree contents. .TP \-\-text Treat all files as text. .TP \-a Shorthand for "\-\-text". .TP \-\-ignore\-space\-at\-eol Ignore changes in white spaces at EOL. .TP \-\-ignore\-space\-change Ignore changes in amount of white space. This ignores white space at line end, and consider all other sequences of one or more white space characters to be equivalent. .TP \-b Shorthand for "\-\-ignore\-space\-change". .TP \-\-ignore\-all\-space Ignore white space when comparing lines. This ignores difference even if one line has white space where the other line has none. .TP \-w Shorthand for "\-\-ignore\-all\-space". .TP \-\-exit\-code Make the program exit with codes similar to diff(1). That is, it exits with 1 if there were differences and 0 means no differences. .TP \-\-quiet Disable all output of the program. Implies \-\-exit\-code. .TP \-\-ext\-diff Allow an external diff helper to be executed. If you set an external diff driver with gitlink:gitattributes(5), you need to use this option with gitlink:git\-log(1) and friends. .TP \-\-no\-ext\-diff Disallow external diff drivers. For more detailed explanation on these common options, see also [1]\&\fIdiffcore documentation\fR. .TP \&... The parameters, when given, are used to limit the diff to the named paths (you can give directory names and get diff for all files under them). .SH "EXAMPLES" .TP Various ways to check your working tree .sp .nf .ft C $ git diff \fB(1)\fR $ git diff \-\-cached \fB(2)\fR $ git diff HEAD \fB(3)\fR .ft .fi .sp \fB1. \fRChanges in the working tree not yet staged for the next commit. .br \fB2. \fRChanges between the index and your last commit; what you would be committing if you run "git commit" without "\-a" option. .br \fB3. \fRChanges in the working tree since your last commit; what you would be committing if you run "git commit \-a" .br .TP Comparing with arbitrary commits .sp .nf .ft C $ git diff test \fB(1)\fR $ git diff HEAD \-\- ./test \fB(2)\fR $ git diff HEAD^ HEAD \fB(3)\fR .ft .fi .sp \fB1. \fRInstead of using the tip of the current branch, compare with the tip of "test" branch. .br \fB2. \fRInstead of comparing with the tip of "test" branch, compare with the tip of the current branch, but limit the comparison to the file "test". .br \fB3. \fRCompare the version before the last commit and the last commit. .br .TP Comparing branches .sp .nf .ft C $ git diff topic master \fB(1)\fR $ git diff topic..master \fB(2)\fR $ git diff topic...master \fB(3)\fR .ft .fi .sp \fB1. \fRChanges between the tips of the topic and the master branches. .br \fB2. \fRSame as above. .br \fB3. \fRChanges that occured on the master branch since when the topic branch was started off it. .br .TP Limiting the diff output .sp .nf .ft C $ git diff \-\-diff\-filter=MRC \fB(1)\fR $ git diff \-\-name\-status \fB(2)\fR $ git diff arch/i386 include/asm\-i386 \fB(3)\fR .ft .fi .sp \fB1. \fRShow only modification, rename and copy, but not addition nor deletion. .br \fB2. \fRShow only names and the nature of change, but not actual diff output. .br \fB3. \fRLimit diff output to named subtrees. .br .TP Munging the diff output .sp .nf .ft C $ git diff \-\-find\-copies\-harder \-B \-C \fB(1)\fR $ git diff \-R \fB(2)\fR .ft .fi .sp \fB1. \fRSpend extra cycles to find renames, copies and complete rewrites (very expensive). .br \fB2. \fROutput diff in reverse. .br .SH "AUTHOR" Written by Linus Torvalds .SH "DOCUMENTATION" Documentation by Junio C Hamano and the git\-list . .SH "GIT" Part of the \fBgit\fR(7) suite .SH "REFERENCES" .TP 3 1.\ diffcore documentation \%diffcore.html