注意:虽然所描述的用例是关于在项目中使用子模块,但同样适用于通过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上使用了Git的mingw编译(或者可能是另一个我没有听说过的编译)。有一些方法可以调试这个:我相信git的所有http代理工作都是由curl完成的。在运行git之前设置这个环境变量:

GIT_CURL_VERBOSE=1

这至少可以让您了解幕后发生了什么。

其他回答

你也可以在Windows系统的%userprofile%目录(notepad %userprofile%.gitconfig)或Linux系统的~目录(vi ~/.gitconfig)中编辑。gitconfig文件,并添加如下所示的http部分。

.gitconfig文件内容:

[http]
        proxy = http://proxy.mycompany:80

这不是你的代理人的问题。这是github(或git)的一个问题。我在linux上的git-1.6.0.1上也失败了。Bug已被报告(由您报告)。

一定要删除你的馅饼,它们已经在谷歌上了。编辑:一定是在做梦,我猜你不能删除它们。用Gist代替?

你也可以在全局配置属性HTTP .proxy中设置Git使用的HTTP代理:

git config --global http.proxy http://proxy.mycompany:80

使用代理进行身份验证:

git config --global http.proxy http://mydomain\\myusername:mypassword@myproxyserver:8080/

(认证格式归功于@EugeneKulabuhov和@JaimeReynoso。)

这是许多人的回答,但这只是为windows用户谁是背后的代理与认证。

重新安装(第一次失败,不要删除)。

Goto ->
**Windows**
1. msysgit\installer-tmp\etc\gitconfig
    Under [http]
        proxy = http://user:pass@url:port

**Linux**
1. msysgit\installer-tmp\setup-msysgit.sh
      export HTTP_PROXY="http://USER:PASS@proxy.abc.com:8080"

如果在user/pass中有任何特殊字符,请使用url_encode

只是发布这是谷歌上的第一个结果,我发现这篇博客文章通过更新curl证书解决了我的问题。

http://www.simplicidade.org/notes/archives/2011/06/github_ssl_ca_errors.html