查看配置
git config --global -l
C:\Users\lojun>git config --global http.proxy 127.0.0.1:7890
C:\Users\lojun>git config --global https.proxy 127.0.0.1:7890
C:\Users\lojun>git config --global remote.origin.proxy 127.0.0.1:7890
https://www.cnblogs.com/LandWind/p/github_SSL_connect_error_443.html
我的remote.origin.proxy=
是空的,我给它设置上代理终于解决了这个问题,
网上那些方法都没用。
如git config --global --add remote.origin.proxy ""
git config --global --unset http.proxy
如git config --global http.sslVerify false
或者在Internet属性-连接-局域网设置中取消代理服务器也没用。
所以我干脆直接走代理,给它设置我的vpn的端口127.0.0.1:7890
刷新dns 设置hosts方法,我电脑刷不了,我就没用这个方法
网友评论