Git 不会警告书写错误的空格
我已经设置了 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为了让它在提交期间警告您,我相信您必须编写一个预提交挂钩,它将检查适当的空格并警告您。
有关删除空格的相关问题: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