IT系/リファレンス/Gitコマンド/git_check-ignore

Last-modified: 2020-06-01 (月) 01:18:41

git check-ignore

gitignoreで無視されているファイルを調べるコマンド。

用例

  • gitignoreで無視されているファイルを調べる
    git check-ignore **/*
  • gitignoreで無視されているファイルを調べる(.gitignoreでの定義行を表示)
    git check-ignore -v example.o Readme.md

書式

git check-ignore [options] <pathname>

公式によると以下の通り。

git check-ignore [<options>] <pathname>…;
git check-ignore [<options>] --stdin

options

-q | --quietDon’t output anything, just set exit status. This is only valid with a single pathname.
-v | --verboseInstead of printing the paths that are excluded, for each path that matches an exclude pattern, print the exclude pattern together with the path. (Matching an exclude pattern usually means the path is excluded, but if the pattern begins with ! then it is a negated pattern and matching it means the path is NOT excluded. For precedence rules within and between exclude sources, see gitignore.
--stdinRead pathnames from the standard input, one per line, instead of from the command-line.
-zThe output format is modified to be machine-parsable (see below). If --stdin is also given, input paths are separated with a NUL character instead of a linefeed character.
-n | --non-matchingShow 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.
--no-indexDon’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.

説明

gitignoreで無視されているファイルを調べるコマンド。

関連

参考リンク

その他メモ

なし。