注意:虽然所描述的用例是关于在项目中使用子模块,但同样适用于通过HTTP的存储库的普通git克隆。

我有一个Git控制下的项目。我想增加一个子模块:

git submodule add http://github.com/jscruggs/metric_fu.git vendor/plugins/metric_fu

但是我知道

...
got 1b0313f016d98e556396c91d08127c59722762d0
got 4c42d44a9221209293e5f3eb7e662a1571b09421
got b0d6414e3ca5c2fb4b95b7712c7edbf7d2becac7
error: Unable to find abc07fcf79aebed56497e3894c6c3c06046f913a under http://github.com/jscruggs/metri...
Cannot obtain needed commit abc07fcf79aebed56497e3894c6c3c06046f913a
while processing commit ee576543b3a0820cc966cc10cc41e6ffb3415658.
fatal: Fetch failed.
Clone of 'http://github.com/jscruggs/metric_fu.git' into submodule path 'vendor/plugins/metric_fu'

我有我的HTTP_PROXY设置:

c:\project> echo %HTTP_PROXY%
http://proxy.mycompany:80

我甚至有一个http代理的全局Git设置:

c:\project> git config --get http.proxy
http://proxy.mycompany:80

有人获得HTTP获取始终通过代理工作吗?真正奇怪的是,GitHub上的一些项目工作得很好(例如awesome_nested_set),但其他项目总是失败(例如rails)。


当前回答

在Windows上,如果您不想将密码以纯文本形式放在.gitconfig中,您可以使用

中新 (http://cntlm.sourceforge.net/)

它针对普通或甚至Windows NTLM代理对您进行身份验证,并在不进行身份验证的情况下启动localhost-proxy。

为了让它运行:

安装Cntml 根据文档配置Cntml以通过代理身份验证 指向git到新的本地主机代理: (http) Proxy = http://localhost:3128 #根据需要更改端口

其他回答

有一种方法可以为特定的URL设置代理,请参阅http.< URL >。*章节在git配置手册。例如,对于https://github.com/,可以这样做

git config --global 'http.https://github.com/.proxy' http://proxy.mycompany:80

使用proxychains

proxychains git pull ...

更新:proxychains已停产,请改用proxychains-ng。

当我的代理不需要身份验证时,上面的答案对我有用。如果您正在使用需要您进行身份验证的代理,那么您可以尝试CCProxy。我有一个关于如何设置的小教程,

http://blog.praveenkumar.co.in/2012/09/proxy-free-windows-xp78-and-mobiles.html

我可以推,拉,创造新的回购。一切都很顺利。如果你像我一样遇到Git的问题,请确保你干净地卸载并重新安装新版本。

安装代理到git

命令

git config --global http.proxy http://user:password@domain:port

例子

git config --global http.proxy http://clairton:123456@proxy.clairtonluz.com.br:8080

最后起作用的是设置http_proxy环境变量。我已经正确地设置了HTTP_PROXY,但git显然更喜欢小写版本。