7 git-diff-files - Compares files in the working tree and the cache
12 'git-diff-files' [-p] [-q] [-r] [-z] [-B] [-M] [-C] [-R] [-O<orderfile>] [-S<string>] [--pickaxe-all] [<pattern>...]
16 Compares the files in the working tree and the cache. When paths
17 are specified, compares only those named paths. Otherwise all
18 entries in the cache are compared. The output format is the
19 same as "git-diff-cache" and "git-diff-tree".
24 generate patch (see section on generating patches).
27 Remain silent even on nonexisting files
30 Swap two inputs; that is, show differences from on-disk files
34 Break complete rewrite changes into pairs of delete and create.
40 Detect copies as well as renames.
43 Look for differences that contains the change in <string>.
46 When -S finds a change, show all the changes in that
47 changeset, not just the files that contains the change
51 Output the patch in the order specified in the
52 <orderfile>, which has one shell glob pattern per line.
55 This flag does not mean anything. It is there only to match
56 git-diff-tree. Unlike git-diff-tree, git-diff-files always looks
57 at all the subdirectories.
62 include::diff-format.txt[]
67 Written by Linus Torvalds <torvalds@osdl.org>
71 Documentation by David Greaves, Junio C Hamano and the git-list <git@vger.kernel.org>.
75 Part of the link:git.html[git] suite