小编典典

无法连接到 GitHub.com 进行克隆

all

我正在尝试克隆angular-phonecat git 存储库,但是当我在 Git Bash 中输入命令时收到以下消息:

$ git clone git://github.com/angular/angular-phonecat.git  
Cloning into 'angular-phonecat'...  
fatal: unable to connect to github.com:  
github.com[0: 204.232.175.90]: errno=No error

阅读 55

收藏
2022-08-07

共1个答案

小编典典

您可能在防火墙后面。尝试通过 https 克隆 - 有更高的机会不被阻止:

git clone https://github.com/angular/angular-phonecat.git
2022-08-07