当我尝试git init
和git add
但它在git commit
时出错(我还没有尝试过其他命令)时,它有效。
错误消息:
致命:'color.status'错误的数字配置值'white':无效单位
我做到了这一点:
git config --global color.status always
但我仍然收到错误。我已经尝试过git-bash,Windows命令提示符和Commander。
答案 0 :(得分:1)
git config --global
会修改您的全局Git设置,但您仍可能有本地设置,可能会覆盖它。
首先检查您的完整设置:
cd /path/to/my/repo
git config --show-origin -l
然后,您可以查看状态是否设置为无效值as described here。
答案 1 :(得分:0)
git config --global --edit
然后在编辑器中将“status”的值更改为“auto”并保存。