我正在尝试使用代理克隆回购。
我已经使用以下命令配置了git:
git config --global https.proxy http:\\proxyuser:proxypass@proxy.name.edu.co:8080
但是当我输入时:
git clone https://bitbucket.org/petsc/petsc petsc
它显示了下一个错误:
克隆到'pflotran-dev'...致命:无法访问 'https://bitbucket.org/pflotran/pflotran-dev/':收到HTTP代码302 来自CONNECT后的代理
我想我做得很好。我不知道发生了什么。 谢谢你的帮助。
答案 0 :(得分:3)
可能是语法错误:
http:\\proxyuser...
http://proxyuser...
所以试试:
git config --global http.proxy http://proxyuser:proxypass@proxy.name.edu.co:8080
git config --global https.proxy http://proxyuser:proxypass@proxy.name.edu.co:8080