我试图克隆一个git存储库,但它显示了一个代理错误

时间:2017-09-04 20:33:06

标签: javascript git

在尝试克隆git存储库时,我遇到了这个错误。

  

克隆到' homework-0-rach24' ...致命:无法访问   ' https://github.com/rach24/homework-0-rach24.git/':无法解决   proxy:proxy.iiit.ac.in

1 个答案:

答案 0 :(得分:0)

这是因为您在代理服务器后面 像这样设置代理设置

git config --global http.proxy http://<username>:<password>@<proxy-server-url>:<port>

或者在最简单的情况下,这也可以起作用

git config --global http.proxy <proxy server IP>:<port>

对于https

git config --global https.proxy <proxy server ip>:<port>