내 디렉토리 내에서 .gitignore
에 의해서 제외된 파일을 조회하기
git check-ignore [path]
이라는 깃 명령어를 통해서 알 수 있다.— try #1 —
git check-ignore *
git check-ignore **/*
(recursive)→ 위 명령어로는 제대로 작동하지 않는 것 같다.
git ls-files -i -o --exclude-standard
-i
-o
—exclude-standard