5

我正在尝试从 github 获取 nova 代码,但出现以下错误:

#git clone https://github.com/openstack/nova.git
Initialized empty Git repository in /home/avikki/Desktop/nt/nova/.git/
error: Failed connect to github.com:443; Operation now in progress while accessing https://github.com/openstack/nova.git/info/refs

fatal: HTTP request failed

你能建议做什么吗?

4

2 回答 2

2

它对我有用,没有错误。您可能会遇到连接问题 - 请注意错误描述说 git Failed to connect to github.com:443。查看这个答案:GitHub - HTTPS 访问,它提供了一些可能的解决方案。

于 2013-03-12T10:53:50.407 回答
1

我有两次这个问题。我正在运行 Linux。第一次,我在一个需要代理的网络上。请参阅此链接了解如何修复代理设置:如何通过 HTTP 代理从 Git 存储库中提取?

然后我将我的代理配置计算机带到不需要代理的网络并再次出现此错误。

要取消为我的计算机配置代理,

git config --global --unset http.proxy
unset http_proxy
unset https_proxy
unset ftp_proxy
unset all_proxy
unset FTP_PROXY
unset ALL_PROXY
unset HTTPS_PROXY
unset HTTP_PROXY

我不确定我是否需要取消设置所有这些变量,但我当然需要的不仅仅是前两个。

于 2016-06-01T16:45:45.913 回答