如何通过HTTP代理从Git存储库中提取?

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

我有一个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)。

810110 次浏览

看起来您在windows上使用了Git的mingw编译(或者可能是另一个我没有听说过的编译)。有一些方法可以调试这个:我相信git的所有http代理工作都是由curl完成的。在运行git之前设置这个环境变量:

GIT_CURL_VERBOSE=1

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

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

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

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

你也可以在全局配置属性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上,如果你是通过https URL检索,也可以考虑设置HTTPS_PROXY。为我工作!

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

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

我遇到了同样的问题,但修复方法略有不同:使用HTTP支持重新构建git

git:协议无法通过我的公司防火墙。

例如,这个超时了:

git clone git://github.com/miksago/node-websocket-server.git

不过,curl github.com工作得很好,所以我知道我的http_proxy环境变量是正确的。

我尝试使用http,如下所示,但立即得到一个错误。

git clone http://github.com/miksago/node-websocket-server.git


->>>  fatal: Unable to find remote helper for 'http' <<<-

我试着像这样重新编译git:

./configure  --with-curl --with-expat

但还是犯了致命的错误。

最后,经过几个令人沮丧的小时,我读了配置文件, 看到这个:

#定义CURLDIR=/foo/bar如果你的curl头文件和库文件在

# /foo/bar/include和/foo/bar/lib目录

我记得,我没有从源编译curl,所以去了 查找头文件。果然没有安装。这就是问题所在。Make没有抱怨丢失头文件。所以 我没有意识到--with-curl选项什么都没有做(事实上,它是我的git版本的默认值)。< / p >

我做了以下来修复它:

  1. 添加了make所需的头文件:

    yum install curl-devel
    (expat-devel-1.95.8-8.3.el5_5.3.i386  was already installed).
    
  2. Removed git from /usr/local (as I want the new install to live there).

    I simply removed git* from /usr/local/share and /usr/local/libexec

  3. Searched for the include dirs containing the curl and expat header files, and then (because I had read through configure) added these to the environment like so:

    export CURLDIR=/usr/include
    export EXPATDIR=/usr/include
    
  4. Ran configure with the following options, which, again, were described in the configure file itself, and were also the defaults but what the heck:

    ./configure  --with-curl --with-expat
    
  5. And now http works with git through my corporate firewall:

    git clone http://github.com/miksago/node-websocket-server.git
    Cloning into 'node-websocket-server'...
    * Couldn't find host github.com in the .netrc file, using defaults
    * About to connect() to proxy proxy.entp.attws.com port 8080
    *   Trying 135.214.40.30... * connected
    ...
    

你也可以编辑.gitconfig文件位于Windows系统(记事本% userprofile % .gitconfig)的%userprofile%目录中,或者在Linux系统(六世~ / .gitconfig)和添加HTTP部分的~目录中,如下所示。

.gitconfig文件内容:

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

关于这个问题已经有一些很好的答案了。但是,我想我可以凑钱,因为一些代理服务器要求您使用用户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

就是这样!

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

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

$http_proxy是http://github.com.... $https_proxy用于https://github.com

我发现既没有http.proxy也没有GIT_PROXY_COMMAND为我的认证http代理工作。这两种方式都不会触发代理。但我找到了解决办法。

  1. 安装螺旋,或其他你想要的替代品。
  2. 创建一个authfile。authfile的格式是:user_name:passworduser_namepassword是访问代理的用户名和密码。要创建这样一个文件,只需运行如下命令:echo "username:password" > ~/.ssh/authfile

  3. 编辑~/.ssh/config,并确保其权限为644: chmod 644 ~/.ssh/config

以github.com为例,在~/.ssh/config中添加以下行:

Host    github.com
HostName        github.com
ProxyCommand    /usr/local/bin/corkscrew <your.proxy> <proxy port> %h %p <path/to/authfile>
User            git

现在无论你什么时候使用git@github.com,它都会自动使用代理。你也可以很容易地对Bitbucket都做同样的事情。

这种方法不像其他方法那样优雅,但它非常有效。

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

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

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

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

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

为了让它运行:

  • 安装Cntml
  • 根据文档配置Cntml以通过代理身份验证
  • 指向git到新的localhost代理:

    [http]
    proxy = http://localhost:3128       # change port as necessary
    

我绕过代理使用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

如果您只想在指定的存储库上使用代理,则不需要在其他存储库上使用代理。当你git clone一个存储库时,更可取的方法是-c, --config <key=value>选项。如。

$ git clone https://chromium.googlesource.com/chromium/tools/depot_tools.git --config "http.proxy=proxyHost:proxyPort"

对我来说,它起作用的是:

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://只是不通过代理,尽管https://可以。这引起了一些头痛,因为我运行的脚本都使用git://,所以我不能简单地更改它们。然而,我发现了这个GEM

git config --global url."https://github.com/".insteadOf git://github.com/

对于Windows

Goto——> C:/Users/user_name/gitconfig . Goto——> C:/Users/user_name/gitconfig . Goto

用以下细节更新gitconfig文件

(http)

(https)

proxy = https://your_proxy:your_port

(http)

proxy = http://your_proxy:your_port

如何检查您的代理和端口号?

ie浏览器—>设置—> Internet选项—>连接—>局域网设置

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

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

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

正如@user2188765已经指出的,尝试用http[s]://替换存储库的git://协议。另见这个答案

这对我很有效。

git config --global http.proxy proxy_user:proxy_passwd@proxy_ip:proxy_port

安装代理到git

命令

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

例子

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

你可以使用:

git config --add http.proxy http://user:password@proxy_host:proxy_port

使用proxychains

proxychains git pull ...

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

设置Git凭证。助我一臂之力。

git config --global credential.helper wincred

确保只有1个credential.helper

git config -l

如果有多于1且未设置为将其移除。

git config --system --unset credential.helper

现在设置没有密码的代理。

git config --global http.proxy http://<YOUR WIN LOGIN NAME>@proxy:80

检查您添加的所有设置是否正常....

git config --global -l

现在你可以开始了!

下面的方法适合我:

echo 'export http_proxy=http://username:password@roxy_host:port/' >> ~/.bash_profile
echo 'export https_proxy=http://username:password@roxy_host:port' >> ~/.bash_profile
  • Zsh注释:修改你的~/。Zshenv文件代替~/.bash_profile。
  • Ubuntu和Fedora注意:修改你的~/。bashc文件代替~/.bash_profile。
值得一提的是: 网络上的大多数例子显示类似的例子

git config --global http.proxy proxy_user:proxy_passwd@proxy_ip:proxy_port

因此,似乎-如果你的代理需要身份验证-你必须在git-config中留下你的公司密码。这一点都不酷。

但是,如果你只配置用户没有密码:

git config --global http.proxy proxy_user@proxy_ip:proxy_port

Git似乎(至少在我没有凭据助手的windows机器上)可以识别这一点,并在repi -access时提示输入代理密码。

有一种方法可以为特定的URL设置代理,请参阅git config手册中的http灵活;url>。*部分。例如,对于https://github.com/可以这样做

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