我无法使用git bash克隆git repo。
基本上我试图从角度js教程angular js tutorial
执行以下操作#Clone the angular-phonecat repository located at Github by running the following command:
git clone https://github.com/angular/angular-phonecat.git
然而,当我这样做时,似乎挂起并且无法克隆到有角度的电话车目录。见截图。网址是avtive,当我将其加载到浏览器中时我可以打开它吗?所以我想我可能会阻塞端口?...不确定..
非常感谢任何帮助。错误说http请求失败
答案 0 :(得分:0)
听起来好像GitHub已经关闭,或者你可能正在阻止访问它的防火墙后面。您是否尝试过使用curl连接到GitHub?
curl -I https://github.com/angular/angular-phonecat.git
此外,克隆操作失败后,请在命令行中输入:
echo $?
这是最后一个命令的退出代码。您可以尝试谷歌搜索" git clone失败,退出代码为X"。