列出被 Git 忽略的文件的 shell 脚本

列出被 Git 忽略的文件的 shell 脚本

如何编写一个简短的 shell 脚本来列出您的 Git 存储库忽略的所有现有文件?

终端会话示例:

%> bash git_ignore.sh | cat -e
.DS_Store$
mywork.c~$
%>

答案1

您可以用来git ls-files --others --ignored --exclude-standard列出 .txt 中的规则忽略的未跟踪文件.gitignore

Stack Overflow 上的这个答案有关选项的解释。

相关内容