我将我的东西从windows pc提交到远程时出现了以下错误。
remote: +++ WARNING - You committed whitespace errors
remote: +++ WARNING - Please consider fixing them
remote: +++ You can enable hook to prevent committing whitespace errors by renaming .git/hooks/pre-commit.sample to pre-commit
我的git global config具有以下 core.autocrlf 设置
$ git config --list | grep crl
core.autocrlf=input
core.autocrlf=true
我是否有任何改变以摆脱这个错误?
答案 0 :(得分:1)
这与core.autocrlf
无关,因为这些是空格错误,而不是行结尾错误。
此处的相关配置为core.whitespace
。如果您不想要这些错误,请将其删除(或者,在投入之前修复它们)。