確認方法
git status --ignored
で確認できます。
$ tree
.
├── example.txt
├── sample.txt
└── test.txt
$ cat .gitignore
/test.txt
/example.txt
$ git status --ignored
On branch main
No commits yet
Untracked files:
(use "git add <file>..." to include in what will be committed)
.gitignore
sample.txt
Ignored files:
(use "git add -f <file>..." to include in what will be committed)
example.txt
test.txt
nothing added to commit but untracked files present (use "git add" to track)
またgit ls-files --other --ignored --exclude-standard
でも可能です。
こちらはignoreされているファイルのリストのみ出力されます。
$ git ls-files --other --ignored --exclude-standard
example.txt
test.txt