现象
今天在使用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://www.toymoban.com/news/detail-624088.html
参考
https://stackoverflow.com/questions/45174228/git-error-key-does-not-contain-a-section文章来源地址https://www.toymoban.com/news/detail-624088.html
到了这里,关于git bash 报错:error: key does not contain a section: –global的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!