Git 不会警告书写错误的空格

发布于 2024-12-05 12:06:52 字数 305 浏览 0 评论 0原文

我已经设置了 git 的配置,以便“git config --list”给出以下内容:

core.editor=vim
core.whitespace=trailing-space,space-before-tab,indent-with-non-tab
core.repositoryformatversion=0
core.filemode=false
core.bare=false
core.logallrefupdates=true

但是当我想提交一个带有尾随空格或其他空格问题的文件时,它从不抱怨。不知道我能做什么。

I've set config of git so that 'git config --list' gives following:

core.editor=vim
core.whitespace=trailing-space,space-before-tab,indent-with-non-tab
core.repositoryformatversion=0
core.filemode=false
core.bare=false
core.logallrefupdates=true

But when I want to commit a file whit trailing space or other whitespace problem, it never complains. Don't know what I can do.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

风和你 2024-12-12 12:06:52

为了让它在提交期间警告您,我相信您必须编写一个预提交挂钩,它将检查适当的空格并警告您。

有关删除空格的相关问题:Make git自动删除尾随空格提交之前

For it to warn you during commit, I believe you have to write a pre-commit hook which will check for the appropriate whitespace and warn you.

Related question regarding removing whitespace: Make git automatically remove trailing whitespace before committing

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文