在CONNECT之后从代理接收到HTTP代码302克隆bitbucket存储库时

时间:2014-08-16 19:45:51

标签: git proxy bitbucket

我正在尝试使用代理克隆回购。

我已经使用以下命令配置了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后的代理

我想我做得很好。我不知道发生了什么。 谢谢你的帮助。

1 个答案:

答案 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