在尝试克隆git存储库时,我遇到了这个错误。
克隆到' homework-0-rach24' ...致命:无法访问 ' https://github.com/rach24/homework-0-rach24.git/':无法解决 proxy:proxy.iiit.ac.in
答案 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>