注意:虽然描述的用例是关于在项目中使用子模块,但同样适用于git clone
HTTP上的存储库的常规.
我在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).
您还可以设置Git在全局配置属性中使用的HTTP代理http.proxy
:
git config --global http.proxy http://proxy.mycompany:80
要使用代理进行身份验证:
git config --global http.proxy http://mydomain\\myusername:mypassword@myproxyserver:8080/
(信用证转到@EugeneKulabuhov和@JaimeReynoso获取身份验证格式.)
这已经有了一些很好的答案.但是,我认为我会填写,因为一些代理服务器要求您使用用户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,配置文件中的一个条目就足够了.
然后,您可以.gitconfig
通过执行cat .gitconfig
以下操作验证该命令是否已成功将条目添加到文件中:
在文件的末尾,您将看到如下条目:
[http] proxy = http://mydomain\\myusername:mypassword@myproxyserver:8080
而已!
最终工作的是设置http_proxy
环境变量.我设置HTTP_PROXY
正确,但git显然更喜欢小写版本.
看起来你正在Windows上使用Gitw编译Git(或者可能是另一个我没有听说过的).有一些方法可以调试这个:我相信git的所有http代理工作都是由curl完成的.在运行git之前设置此环境变量:
GIT_CURL_VERBOSE=1
这至少应该让您了解幕后发生的事情.
如果您只想在指定的存储库上使用代理,则不需要在其他存储库上.-c, --config
当您git clone
使用存储库时,首选方法是选项.例如
$ git clone https://chromium.googlesource.com/chromium/tools/depot_tools.git --config "http.proxy=proxyHost:proxyPort"
当您的网络团队通过重写证书进行ssl检查时,然后使用http url而不是https,并结合设置此var为我工作.
git config --global http.proxy http://proxy:8081
您也可以编辑位于Windows系统上的%userprofile%目录(notepad%userprofile%.gitconfig)或Linux系统上的〜目录(vi~/.gitconfig)中的.gitconfig文件,并添加如下所示的http部分.
.gitconfig文件的内容:
[http] proxy = http://proxy.mycompany:80
对我来说,git://虽然https://确实无法通过代理工作.这引起了一些麻烦,因为我运行的脚本都使用了git://所以我不能轻易地改变它们.但是我找到了这个创业板
git config --global url."https://github.com/".insteadOf git://github.com/
这是一个老问题,但如果您使用的是Windows,请考虑在通过https URL检索时设置HTTPS_PROXY.为我工作!
我找不到http.proxy
也不GIT_PROXY_COMMAND
适用于我的身份验证的http代理.代理不会以任何方式触发.但我找到了解决这个问题的方法.
安装开瓶器或其他您想要的替代品.
创建一个authfile.格式为authfile
:user_name:password
,和user_name
,password
是您访问代理的用户名和密码.要创建这样的文件,只需运行如下命令:echo "username:password" > ~/.ssh/authfile
.
编辑~/.ssh/config
,并确保其权限是644
:chmod 644 ~/.ssh/config
以github.com为例,将以下行添加到~/.ssh/config
:
Host github.com HostName github.com ProxyCommand /usr/local/bin/corkscrew%h %p User git
现在,只要你做任何事情git@github.com
,它就会自动使用代理.您也可以轻松地对Bitbucket做同样的事情.
这并不像其他方法那么优雅,但它就像一个魅力.
在Windows上,如果您不想在纯文本中将密码放在.gitconfig中,则可以使用
Cntml(http://cntlm.sourceforge.net/)
它针对普通甚至Windows NTLM代理对您进行身份验证,并在不进行身份验证的情况下启动localhost-proxy.
为了让它运行:
安装Cntml
根据文档配置Cntml以传递代理身份验证
将git指向新的localhost代理:
[http] proxy = http://localhost:3128 # change port as necessary
对我来说它的作用是:
sudo apt-get install socat
使用以下命令在$ BIN_PATH/gitproxy中创建一个文件:
#!/bin/sh _proxy=192.168.192.1 _proxyport=3128 exec socat STDIO PROXY:$_proxy:$1:$2,proxyport=$_proxyport
别忘了给它执行权限
chmod a+x gitproxy
运行以下命令来设置环境:
export PATH=$BIN_PATH:$PATH git config --global core.gitproxy gitproxy
git config --global http.proxy http://user:password@domain:port
git config --global http.proxy http://clairton:123456@proxy.clairtonluz.com.br:8080
只是发布这个,因为它是谷歌的第一个结果,我发现这篇博文通过更新卷曲证书解决了我的问题.
http://www.simplicidade.org/notes/archives/2011/06/github_ssl_ca_errors.html