2013-01-06 17:58:13 +01:00
|
|
|
git-check-ignore(1)
|
|
|
|
===================
|
|
|
|
|
|
|
|
NAME
|
|
|
|
----
|
|
|
|
git-check-ignore - Debug gitignore / exclude files
|
|
|
|
|
|
|
|
|
|
|
|
SYNOPSIS
|
|
|
|
--------
|
|
|
|
[verse]
|
|
|
|
'git check-ignore' [options] pathname...
|
usage: do not insist that standard input must come from a file
The synopsys text and the usage string of subcommands that read list
of things from the standard input are often shown like this:
git gostak [--distim] < <list-of-doshes>
This is problematic in a number of ways:
* The way to use these commands is more often to feed them the
output from another command, not feed them from a file.
* Manual pages outside Git, commands that operate on the data read
from the standard input, e.g "sort", "grep", "sed", etc., are not
described with such a "< redirection-from-file" in their synopsys
text. Our doing so introduces inconsistency.
* We do not insist on where the output should go, by saying
git gostak [--distim] < <list-of-doshes> > <output>
* As it is our convention to enclose placeholders inside <braket>,
the redirection operator followed by a placeholder filename
becomes very hard to read, both in the documentation and in the
help text.
Let's clean them all up, after making sure that the documentation
clearly describes the modes that take information from the standard
input and what kind of things are expected on the input.
[jc: stole example for fmt-merge-msg from Jonathan]
Helped-by: Jonathan Nieder <jrnieder@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2015-10-16 20:27:42 +02:00
|
|
|
'git check-ignore' [options] --stdin
|
2013-01-06 17:58:13 +01:00
|
|
|
|
|
|
|
DESCRIPTION
|
|
|
|
-----------
|
|
|
|
|
|
|
|
For each pathname given via the command-line or from a file via
|
2015-11-20 21:30:48 +01:00
|
|
|
`--stdin`, check whether the file is excluded by .gitignore (or other
|
|
|
|
input files to the exclude mechanism) and output the path if it is
|
|
|
|
excluded.
|
2013-01-06 17:58:13 +01:00
|
|
|
|
2014-12-04 16:23:05 +01:00
|
|
|
By default, tracked files are not shown at all since they are not
|
|
|
|
subject to exclude rules; but see `--no-index'.
|
|
|
|
|
2013-01-06 17:58:13 +01:00
|
|
|
OPTIONS
|
|
|
|
-------
|
|
|
|
-q, --quiet::
|
|
|
|
Don't output anything, just set exit status. This is only
|
|
|
|
valid with a single pathname.
|
|
|
|
|
|
|
|
-v, --verbose::
|
|
|
|
Also output details about the matching pattern (if any)
|
2015-11-20 21:30:48 +01:00
|
|
|
for each given pathname. For precedence rules within and
|
|
|
|
between exclude sources, see linkgit:gitignore[5].
|
2013-01-06 17:58:13 +01:00
|
|
|
|
|
|
|
--stdin::
|
usage: do not insist that standard input must come from a file
The synopsys text and the usage string of subcommands that read list
of things from the standard input are often shown like this:
git gostak [--distim] < <list-of-doshes>
This is problematic in a number of ways:
* The way to use these commands is more often to feed them the
output from another command, not feed them from a file.
* Manual pages outside Git, commands that operate on the data read
from the standard input, e.g "sort", "grep", "sed", etc., are not
described with such a "< redirection-from-file" in their synopsys
text. Our doing so introduces inconsistency.
* We do not insist on where the output should go, by saying
git gostak [--distim] < <list-of-doshes> > <output>
* As it is our convention to enclose placeholders inside <braket>,
the redirection operator followed by a placeholder filename
becomes very hard to read, both in the documentation and in the
help text.
Let's clean them all up, after making sure that the documentation
clearly describes the modes that take information from the standard
input and what kind of things are expected on the input.
[jc: stole example for fmt-merge-msg from Jonathan]
Helped-by: Jonathan Nieder <jrnieder@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2015-10-16 20:27:42 +02:00
|
|
|
Read pathnames from the standard input, one per line,
|
|
|
|
instead of from the command-line.
|
2013-01-06 17:58:13 +01:00
|
|
|
|
|
|
|
-z::
|
|
|
|
The output format is modified to be machine-parseable (see
|
|
|
|
below). If `--stdin` is also given, input paths are separated
|
|
|
|
with a NUL character instead of a linefeed character.
|
|
|
|
|
2013-04-11 14:05:10 +02:00
|
|
|
-n, --non-matching::
|
|
|
|
Show given paths which don't match any pattern. This only
|
|
|
|
makes sense when `--verbose` is enabled, otherwise it would
|
|
|
|
not be possible to distinguish between paths which match a
|
|
|
|
pattern and those which don't.
|
|
|
|
|
2013-09-05 18:08:01 +02:00
|
|
|
--no-index::
|
|
|
|
Don't look in the index when undertaking the checks. This can
|
|
|
|
be used to debug why a path became tracked by e.g. `git add .`
|
|
|
|
and was not ignored by the rules as expected by the user or when
|
|
|
|
developing patterns including negation to match a path previously
|
|
|
|
added with `git add -f`.
|
|
|
|
|
2013-01-06 17:58:13 +01:00
|
|
|
OUTPUT
|
|
|
|
------
|
|
|
|
|
|
|
|
By default, any of the given pathnames which match an ignore pattern
|
|
|
|
will be output, one per line. If no pattern matches a given path,
|
|
|
|
nothing will be output for that path; this means that path will not be
|
|
|
|
ignored.
|
|
|
|
|
|
|
|
If `--verbose` is specified, the output is a series of lines of the form:
|
|
|
|
|
|
|
|
<source> <COLON> <linenum> <COLON> <pattern> <HT> <pathname>
|
|
|
|
|
|
|
|
<pathname> is the path of a file being queried, <pattern> is the
|
|
|
|
matching pattern, <source> is the pattern's source file, and <linenum>
|
|
|
|
is the line number of the pattern within that source. If the pattern
|
|
|
|
contained a `!` prefix or `/` suffix, it will be preserved in the
|
|
|
|
output. <source> will be an absolute path when referring to the file
|
2015-03-11 21:32:45 +01:00
|
|
|
configured by `core.excludesFile`, or relative to the repository root
|
2013-01-06 17:58:13 +01:00
|
|
|
when referring to `.git/info/exclude` or a per-directory exclude file.
|
|
|
|
|
|
|
|
If `-z` is specified, the pathnames in the output are delimited by the
|
|
|
|
null character; if `--verbose` is also specified then null characters
|
|
|
|
are also used instead of colons and hard tabs:
|
|
|
|
|
|
|
|
<source> <NULL> <linenum> <NULL> <pattern> <NULL> <pathname> <NULL>
|
|
|
|
|
2013-04-11 14:05:10 +02:00
|
|
|
If `-n` or `--non-matching` are specified, non-matching pathnames will
|
|
|
|
also be output, in which case all fields in each output record except
|
|
|
|
for <pathname> will be empty. This can be useful when running
|
|
|
|
non-interactively, so that files can be incrementally streamed to
|
|
|
|
STDIN of a long-running check-ignore process, and for each of these
|
|
|
|
files, STDOUT will indicate whether that file matched a pattern or
|
|
|
|
not. (Without this option, it would be impossible to tell whether the
|
|
|
|
absence of output for a given file meant that it didn't match any
|
|
|
|
pattern, or that the output hadn't been generated yet.)
|
2013-01-06 17:58:13 +01:00
|
|
|
|
2013-04-11 14:05:13 +02:00
|
|
|
Buffering happens as documented under the `GIT_FLUSH` option in
|
|
|
|
linkgit:git[1]. The caller is responsible for avoiding deadlocks
|
|
|
|
caused by overfilling an input buffer or reading from an empty output
|
|
|
|
buffer.
|
|
|
|
|
2013-01-06 17:58:13 +01:00
|
|
|
EXIT STATUS
|
|
|
|
-----------
|
|
|
|
|
|
|
|
0::
|
|
|
|
One or more of the provided paths is ignored.
|
|
|
|
|
|
|
|
1::
|
|
|
|
None of the provided paths are ignored.
|
|
|
|
|
|
|
|
128::
|
|
|
|
A fatal error was encountered.
|
|
|
|
|
|
|
|
SEE ALSO
|
|
|
|
--------
|
|
|
|
linkgit:gitignore[5]
|
2016-05-04 19:36:24 +02:00
|
|
|
linkgit:git-config[1]
|
2013-06-30 14:05:28 +02:00
|
|
|
linkgit:git-ls-files[1]
|
2013-01-06 17:58:13 +01:00
|
|
|
|
|
|
|
GIT
|
|
|
|
---
|
|
|
|
Part of the linkgit:git[1] suite
|