git pull返回致命:无法访问" ..."在CONNECT之后从代理收到HTTP代码0

时间:2017-04-12 08:14:28

标签: git proxy fatal-error

我已经配置了git repo,我需要使用代理服务器来访问互联网。

当我发送命令 git pull 而没有任何git配置代理(http(s).proxy)时,我收到以下消息:

fatal: unable to access "https://..." Failed to connect to ... port 443: Connection refused

我试过了:

git config --global http.proxy host:port
git config --global https.proxy host:port

我收到以下错误:

fatal: unable to access "https://..." Received HTTP code 0 from proxy after CONNECT

然后我尝试了:

git config --global http.proxy http://host:port
git config --global https.proxy http://host:port

git config --global http.proxy https://host:port
git config --global https.proxy https://host:port

但我得到同样的错误。

你能帮帮我吗?

0 个答案:

没有答案