git 提交:gnutls_handshake() failed: Error in the pull function

解决方式:

#取消http代理
git config --global --unset http.proxy
#取消https代理
git config --global --unset https.proxy

ko .

 

补充:》》》》》》》》》》》》》》》》》》》 

 

为git设置http代理, https代理

#http代理
git config --global http.proxy socks5://127.0.0.1:1080
#https代理
git config --global https.proxy socks5://127.0.0.1:1080

 

执行git config -l查看代理

取消http代理, 取消https代理

#取消http代理
git config --global --unset http.proxy
#取消https代理
git config --global --unset https.proxy

 



git 提交:gnutls_handshake() failed: Error in the pull function

上一篇:数电——超前进位加法器


下一篇:设计模式之静态工厂方法