跳坑 gnutls_handshake() failed: The TLS connection was non-properly terminated.

今天git clone 的时候突然遇到  gnutls_handshake() failed: The TLS connection was non-properly terminated. 这个问题,然后百度。

结果就百度到了

跳坑 gnutls_handshake() failed: The TLS connection was non-properly terminated._第1张图片

全都是复制粘贴,我都不知道他们是否验证了,就贴出来,我就按着做了,结果再git clone 就成 Failed to connect to 127.0.0.1 port 7890: Connection refused

然后就又百度 然后就百度到了https://blog.csdn.net/weixin_41010198/article/details/87929622,里面有各种解决方案但是都失败了

最后重置代理 完美解决

git config --global  --unset https.https://github.com.proxy 
git config --global  --unset http.https://github.com.proxy 
 

 

你可能感兴趣的:(杂文)