14e437436158e56d6117151bfda35369f36b0d98
   1git-check-attr(1)
   2=================
   3
   4NAME
   5----
   6git-check-attr - Display gitattributes information.
   7
   8
   9SYNOPSIS
  10--------
  11'git check-attr' attr... [--] pathname...
  12'git check-attr' --stdin [-z] attr... < <list-of-paths
  13
  14DESCRIPTION
  15-----------
  16For every pathname, this command will list if each attr is 'unspecified',
  17'set', or 'unset' as a gitattribute on that pathname.
  18
  19OPTIONS
  20-------
  21--stdin::
  22        Read file names from stdin instead of from the command-line.
  23
  24-z::
  25        Only meaningful with `--stdin`; paths are separated with
  26        NUL character instead of LF.
  27
  28\--::
  29        Interpret all preceding arguments as attributes, and all following
  30        arguments as path names. If not supplied, only the first argument will
  31        be treated as an attribute.
  32
  33
  34SEE ALSO
  35--------
  36linkgit:gitattributes[5].
  37
  38
  39Author
  40------
  41Written by Junio C Hamano <gitster@pobox.com>
  42
  43Documentation
  44--------------
  45Documentation by James Bowes.
  46
  47GIT
  48---
  49Part of the linkgit:git[1] suite