AI摘要
Git报错“OpenSSL SSL_read: Connection was reset, errno 10054”通常由代理设置引起。解决方法是取消本机Git代理配置,执行命令:`git config --global --unset http.proxy` 和 `git config --global --unset https.proxy` 即可恢复连接。
git报错OpenSSL SSL_read: Connection was reset, errno 10054
解决方法
取消本机代理
git config --global --unset http.proxy
git config --global --unset https.proxy
评论 (0)