是否有与 git status --ignore-submodules 设置相对应的 .gitconfig 选项?
是否有全局 .gitconfig 设置允许将忽略子模块选项的默认值从“全部”更改为“脏”、“未跟踪”或“无”?
Is there a global .gitconfig setting that allows to change the default of the ignore-submodules option from "all" to "dirty", "untracked", or "none"?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
来自 git config:
diff.ignoreSubmodules
应该覆盖任何“submodule..ignore
”设置。它设置了
--ignore-submodules
命令行选项的默认值。然而,Allan Jensen 报告(九年后的 2019 年)该功能不起作用,并且 提出补丁,如图 在此差异中。
From git config:
diff.ignoreSubmodules
is supposed to override any 'submodule.<name>.ignore
' settings.And it sets the default value of the
--ignore-submodules
command-line option.However, Allan Jensen reports (in 2019, nine years later) that feature as not working, and proposes a patch, shown in this diff.