Finding out why a file is ignored in Git

If you have some file that you are expecting to commit but it’s being ignored, you can run this command it will tell you why it’s being ignored:

git check-ignore -v filename

Leave a comment