- 走代理全局模式
- 如果代理失敗
關(guān)閉SSL 驗(yàn)證
git config --global http.sslVerify "false"
如果還是不行
強(qiáng)制git 走本地http端口代理
git config --global http.proxy http://127.0.0.1:1080
git config --global https.proxy http://127.0.0.1:1080
參考:
(35條消息) Git提示Connection was reset, errno 10054解決方法_天涯各一方&的博客-CSDN博客
新版SD WebUI卡安裝Open_Clip解決方法 - 嗶哩嗶哩 (bilibili.com)
時(shí)候取消代理
git config --global --unset http.proxy
git config --global --unset https.proxy