笔记:
也很有趣(在qwertymk的回答中提到),您也可以使用该git check-ignore -v
命令,至少在 Unix 上(在 CMD Windows会话中不起作用)
git check-ignore *
git check-ignore -v *
第二个显示了.gitignore
在你的 git repo 中忽略文件的实际规则。
在 Unix 上,使用“什么递归地扩展到当前目录中的所有文件? ”和 bash4+:
git check-ignore **/*
(或find -exec
命令)
注意:https://stackoverflow.com/users/351947/Rafi B.在评论中建议避免(有风险的) globstar:
git check-ignore -v $(find . -type f -print)
确保从子文件夹中排除文件.git/
。
CervEd在评论中建议避免.git/
:
find . -not -path './.git/*' | git check-ignore --stdin
原答案42009)
git ls-files -i
应该可以工作,除了它的源代码表明:
if (show_ignored && !exc_given) {
fprintf(stderr, "%s: --ignored needs some exclude pattern\n",
argv[0]);
exc_given
?
事实证明,在-i
实际列出任何内容之后,还需要一个参数:
尝试:
git ls-files -i --exclude-from=[Path_To_Your_Global].gitignore
(但这只会列出带有过滤器的缓存(非忽略)对象,因此这不是您想要的)
例子:
$ cat .git/ignore
# ignore objects and archives, anywhere in the tree.
*.[oa]
$ cat Documentation/.gitignore
# ignore generated html files,
*.html
# except foo.html which is maintained by hand
!foo.html
$ git ls-files --ignored \
--exclude='Documentation/*.[0-9]' \
--exclude-from=.git/ignore \
--exclude-per-directory=.gitignore
实际上,在我的“gitignore”文件(称为“排除”)中,我找到了一个可以帮助您的命令行:
F:\prog\git\test\.git\info>type exclude
# git ls-files --others --exclude-from=.git/info/exclude
# Lines that start with '#' are comments.
# For a project mostly in C, the following would be a good set of
# exclude patterns (uncomment them if you want to use them):
# *.[oa]
# *~
所以....
git ls-files --ignored --exclude-from=.git/info/exclude
git ls-files -i --exclude-from=.git/info/exclude
git ls-files --others --ignored --exclude-standard
git ls-files -o -i --exclude-standard
应该做的伎俩。
(感谢honzajde在不包括缓存文件的评论中指出:只有(没有)有。)git ls-files -o -i --exclude-from...
git ls-files -i --exclude-from...
-o
正如ls-files 手册页中提到的,--others
是重要的部分,以便向您显示非缓存、非提交、通常被忽略的文件。
--exclude_standard
不仅仅是一个快捷方式,而是一种包含所有标准“忽略模式”设置的方法。
exclude-standard
在每个目录中
添加标准 git 排除项:.git/info/exclude
,和..gitignore
user's global exclusion file