Code

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