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 存储库有一些问题,所以我不明白为什么 .gitignore 会失败......
是否可以读取 .gitignore 文件和 git 忽略的路径/文件的列表?
提前致谢
如果您想查看当前被您忽略的实际文件,.gitignore您可以使用git-ls-files:
.gitignore
git-ls-files
git ls-files -i --exclude-from=.gitignore
是的,可以有一个 git 忽略的文件/文件夹列表,获取它很简单:
cat .gitignore