git报错 gnutls_handshake() failed: Error in the pull function

  • 一般是代理配置的问题
# 如果配置了代理
git config --global https.proxy http://127.0.0.1:7890
git config --global https.proxy http://127.0.0.1:7890

# 如果删除代理
git config --global --unset http.proxy
git config --global --unset https.proxy
评论