我使用Git出现的问题
前言
因为总是出现那个这个的问题,于是用笔记记录一下,复现的问题也容易再次解决!
问题1
fatal: bad boolean config value 'trueue' for 'http.sslverify' fatal: remote helper 'https' aborted session
永久规避这个问题:
git config --global http.sslverify false
git config --global https.sslverify false
问题2
出现fatal: unable to access ‘https://github.com/.../.git‘: Recv failure Connection was rese
设置本地代理:
git config --global http.proxy http://127.0.0.1:7890
问题3
出现出现:server certificate verification failed. CAfile: none CRLfile: none
永久规避这个问题:
git config --global http.sslverify false
git config --global https.sslverify false
评论区