我已经配置了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
但我得到同样的错误。
你能帮帮我吗?