0


git bash 报错:error: key does not contain a section: –global

现象

今天在使用

git config –global -l

命令查看git全局配置的时候报错

error: key does not contain a section: –global

原因分析

经过排查后发现可能是自己在什么时候无意中修改了git的config文件

解决方案

在git bash中 输入命令 回车

git config --global --edit

进入config文件编辑页面,就是linux的vi编辑器修改文件,按 i 进入编辑模式,贴入以下内容

[core]
repositoryformatversion =0
filemode =true
bare =false
logallrefupdates =true
ignorecase =true
precomposeunicode =true

完成后 按 esc 退出编辑模式 输入 wq 保存并退出
再次测试命令

git config –global -l

成功

参考

https://stackoverflow.com/questions/45174228/git-error-key-does-not-contain-a-section

标签: git github linux

本文转载自: https://blog.csdn.net/SmartXiongYinJun/article/details/128672120
版权归原作者 SmartXiongYinJun 所有, 如有侵权,请联系我们删除。

“git bash 报错:error: key does not contain a section: –global”的评论:

还没有评论