166238f5c68480543d1da7ae09f8195d768fa81f
   1git-diff-files(1)
   2=================
   3v0.1, May 2005
   4
   5NAME
   6----
   7git-diff-files - Compares files in the working tree and the cache
   8
   9
  10SYNOPSIS
  11--------
  12'git-diff-files' [-p] [-q] [-r] [-z] [-M] [<pattern>...]
  13
  14DESCRIPTION
  15-----------
  16Compares the files in the working tree and the cache.  When paths
  17are specified, compares only those named paths.  Otherwise all
  18entries in the cache are compared.  The output format is the
  19same as "git-diff-cache" and "git-diff-tree".
  20
  21OPTIONS
  22-------
  23-p::
  24        generate patch (see section on generating patches).
  25
  26-q::
  27        Remain silent even on nonexisting files
  28
  29-M::
  30        Detect renames; implies -p.
  31
  32-r::
  33        This flag does not mean anything.  It is there only to match
  34        git-diff-tree.  Unlike git-diff-tree, git-diff-files always looks
  35        at all the subdirectories.
  36
  37
  38Output format
  39-------------
  40include::diff-format.txt[]
  41
  42
  43Author
  44------
  45Written by Linus Torvalds <torvalds@osdl.org>
  46
  47Documentation
  48--------------
  49Documentation by David Greaves, Junio C Hamano and the git-list <git@vger.kernel.org>.
  50
  51GIT
  52---
  53Part of the link:git.html[git] suite
  54