特别抽象!
起因是想用github来托管我的代码,后来发现出现了点错误
fatal: bad boolean config value 'flase' for 'http.sslverify'
解决方案:
打开C盘 -> 搜索 .gitconfig -> 在里面修改内容即可
再次回到 gitbash 上,再次输入git clone 的指令,非常好,一波未平一波又起
fatal: unable to access 'https://github.com/Alasoshuang18/C_code.git/': OpenSSLSSL_read: SSL_ERROR_SYSCALL, errno 0
解决方案:输入 git config --global --unset http.proxy
原因:git在拉取或者提交项目时,中间会有 git 的 http 和 https代理,但是我们本地环境本身就有SSL协议了,所以取消git的https代理即可,不行再取消http的代理。