13

如何找到导致文件被 git 忽略的 gitignore 文件和行?

4

1 回答 1

14

从 repo 根目录,试试这个:

find . ~/.gitignore .git/info/exclude -name '*gitignore' -exec cat {} + | less

还要检查您是否使用了不同的排除文件:

git config -l | grep exclude
core.excludesfile=~/.gitignore

当您在子文件夹中而不是在 git 项目的 root 中有子模块时,您也可能会收到该错误。

感谢Jon LinChristopher帮助我解决了最初的问题

于 2012-08-01T17:27:28.447 回答