Documentation / git-diff-files.txton commit setup_git_directory: make sure GIT_DIR is a valid repository. (5e7bfe2)
   1git-diff-files(1)
   2=================
   3
   4NAME
   5----
   6git-diff-files - Compares files in the working tree and the index
   7
   8
   9SYNOPSIS
  10--------
  11'git-diff-files' [-q] [<common diff options>] [<path>...]
  12
  13DESCRIPTION
  14-----------
  15Compares the files in the working tree and the index.  When paths
  16are specified, compares only those named paths.  Otherwise all
  17entries in the index are compared.  The output format is the
  18same as "git-diff-index" and "git-diff-tree".
  19
  20OPTIONS
  21-------
  22include::diff-options.txt[]
  23
  24-q::
  25        Remain silent even on nonexisting files
  26
  27Output format
  28-------------
  29include::diff-format.txt[]
  30
  31
  32Author
  33------
  34Written by Linus Torvalds <torvalds@osdl.org>
  35
  36Documentation
  37--------------
  38Documentation by David Greaves, Junio C Hamano and the git-list <git@vger.kernel.org>.
  39
  40GIT
  41---
  42Part of the gitlink:git[7] suite
  43