注意:虽然所描述的用例是关于在项目中使用子模块,但同样适用于通过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)。


当前回答

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

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

其他回答

我绕过代理使用https…有些代理甚至不检查https。

Microsoft Windows [Version 6.1.7601]
Copyright (c) 2009 Microsoft Corporation.  All rights reserved.

c:\git\meantest>git clone http://github.com/linnovate/mean.git
Cloning into 'mean'...
fatal: unable to access 'http://github.com/linnovate/mean.git/': Failed connect
to github.com:80; No error

c:\git\meantest>git clone https://github.com/linnovate/mean.git
Cloning into 'mean'...
remote: Reusing existing pack: 2587, done.
remote: Counting objects: 27, done.
remote: Compressing objects: 100% (24/24), done.
rRemote: Total 2614 (delta 3), reused 4 (delta 0)eceiving objects:  98% (2562/26

Receiving objects: 100% (2614/2614), 1.76 MiB | 305.00 KiB/s, done.
Resolving deltas: 100% (1166/1166), done.
Checking connectivity... done

关于这个问题已经有一些很好的答案了。但是,我想我可以凑钱,因为一些代理服务器要求您使用用户Id和密码进行身份验证。有时这可能是在一个域中。

例如,如果你的代理服务器配置如下:

Server: myproxyserver
Port: 8080
Username: mydomain\myusername
Password: mypassword

然后,使用以下命令添加到您的.gitconfig文件:

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

不要担心https。只要指定的代理服务器支持http和https,那么配置文件中的一个条目就足够了。

然后,您可以通过执行cat .gitconfig命令来验证该命令是否成功地将条目添加到您的.gitconfig文件中:

在文件的末尾,你会看到如下的条目:

[http]
    proxy = http://mydomain\\myusername:mypassword@myproxyserver:8080

就是这样!

安装代理到git

命令

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

例子

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

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

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

当您的网络团队通过重写证书来进行ssl检查时,使用http url而不是https url,并结合设置此var对我来说是有效的。

git config --global http.proxy http://proxy:8081