Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
可能重复: 在 git 中显示被忽略的文件
我忘记了如何设置我的 Git,我想确切地知道它忽略了哪些文件。是否有命令或文件列表可以让我重新熟悉我的忽略/排除列表?
git status您可以使用以下标志显示被忽略的文件:
git status
git status --ignored
这将有效地为您提供git status就好像没有任何东西被忽略一样。