日本免费高清视频-国产福利视频导航-黄色在线播放国产-天天操天天操天天操天天操|www.shdianci.com

學無先后,達者為師

網站首頁 編程語言 正文

git clone 失敗

作者:正在攀登的小蝸牛 更新時間: 2022-04-01 編程語言

現象

PS E:\workspace\go_workspace> git clone https://github.com/xxxxx
Cloning into 'xxxx'...
fatal: unable to access 'https://github.com/xxxxx/': OpenSSL SSL_read: Connection was aborted, errno 10053

解決辦法

PS E:\workspace\go_workspace> git config --global http.postBuffer 524288000

現象

PS E:\workspace\go_workspace> git clone https://github.com/xxxxxxx/xxxx.git
Cloning into 'xxxx'...
fatal: unable to access 'https://github.com/xxxt/': Failed to connect to github.com port 443: Timed out

解決辦法

PS E:\workspace\go_workspace> git config --global --unset http.proxy
PS E:\workspace\go_workspace> git config --global --unset https.proxy
PS E:\workspace\go_workspace> git clone https://github.com/xxxxx
Cloning into 'xxxx'...
remote: Enumerating objects: 103, done.
remote: Counting objects: 100% (103/103), done.
remote: Compressing objects: 100% (77/77), done.

原文鏈接:https://blog.csdn.net/qq_21127151/article/details/121059073

欄目分類
最近更新