How can I find the gitignore file and line that is causing a file to be ignored by git?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
From the repo root, try this:
Also check that you’re not using a different excludes file:
You can also get that error when you have submodules in a subfolder instead at the git project’s root.
Thanks to Jon Lin and Christopher for helping me figure this out on the original question.