git clone无法解析fqdn因此克隆失败

时间:2015-07-28 09:48:18

标签: git

问题出在Windows上 - 我不知道Linux上是否可以

hosts文件包含: 1.2.3.4 example_host

example_host回答ping,所以它可用 git clone https://1.2.3.4/mygroup1/myrepo1.git也可以克隆repo

为什么以下不起作用: git clone https://example_host/mygroup1/myrepo1.git

错误是: 克隆到'myrepo1'...... 致命:无法访问“https://example_host/mygroup1/myrepo1.git/”:在CONNECT

之后从代理收到HTTP代码502

2 个答案:

答案 0 :(得分:1)

  

在CONNECT

之后从代理收到HTTP代码502

表示它正确解析,但您使用的是代理,现在不是该主机。尝试禁用本地代理或将example_host IP放入代理的例外列表中。

答案 1 :(得分:0)

您需要取消设置代理变量:

  1. 列出他们env|grep -i proxy
  2. 取消设置,例如unset HTTP_PROXY HTTPS_PROXY http_proxy https_proxy
  3. 希望有所帮助!