518

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

4

29 回答 29

611

您还可以在全局配置属性中设置 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。)

于 2010-08-04T14:55:19.200 回答
151

已经有一些很好的答案。但是,我想我会加入,因为某些代理服务器要求您使用用户 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

就是这样!

于 2013-02-07T11:33:16.900 回答
134

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

于 2008-12-29T12:34:18.373 回答
57

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

$ git clone https://chromium.googlesource.com/chromium/tools/depot_tools.git --config "http.proxy=proxyHost:proxyPort"
于 2014-12-24T01:45:28.503 回答
53

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

GIT_CURL_VERBOSE=1

这至少应该让您了解幕后发生的事情。

于 2008-09-24T16:24:51.373 回答
26

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

git config --global http.proxy http://proxy:8081
于 2013-03-11T15:10:15.793 回答
21

对我来说 git:// 只是不能通过代理工作,尽管 https:// 可以。这引起了一些头痛,因为我正在运行所有使用 git:// 的脚本,所以我不能轻易地全部更改它们。但是我发现了这个 GEM

git config --global url."https://github.com/".insteadOf git://github.com/
于 2015-09-23T16:30:15.030 回答
20

您也可以编辑位于 Windows 系统上的 %userprofile% 目录(记事本 %userprofile%.gitconfig)或 Linux 系统上的 ~ 目录(vi ~/.gitconfig)中的 .gitconfig 文件,并添加一个 http 部分,如下所示。

.gitconfig 文件的内容:

[http]
        proxy = http://proxy.mycompany:80
于 2012-10-19T08:35:10.647 回答
17

这是一个老问题,但如果您使用的是 Windows,请考虑设置 HTTPS_PROXY 以及通过 https URL 检索。为我工作!

于 2011-04-19T11:51:04.473 回答
14

我发现我的经过身份验证的 http 代理既不工作http.proxy也不GIT_PROXY_COMMAND工作。代理不会以任何一种方式触发。但我找到了解决这个问题的方法。

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

  3. 编辑~/.ssh/config,并确保其权限为644chmod 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执行相同的操作。

这不像其他方法那么优雅,但它就像一种魅力。

于 2013-05-28T14:21:23.037 回答
11

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

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

为了让它运行:

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

    [http]
        proxy = http://localhost:3128       # change port as necessary
    
于 2014-02-20T09:46:31.890 回答
9

对我来说,它的作用是:

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
于 2015-04-09T09:23:59.670 回答
8

设置代理到 git

命令

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

例子

git config --global http.proxy http://clairton:123456@proxy.clairtonluz.com.br:8080
于 2016-11-24T13:21:17.450 回答
8

将 Git credential.helper 设置为 wincred。

git config --global credential.helper wincred

确保只有 1 个 credential.helper

git config -l

如果超过 1 个并且未设置为 wincred,请将其删除。

git config --system --unset credential.helper

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

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

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

git config --global -l

现在你可以走了!

于 2018-08-15T23:31:30.533 回答
6

我遇到了同样的问题,但修复方法略有不同:REBUILDING GIT WITH HTTP SUPPORT

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)。

我做了以下修复它:

  1. 添加了 make 所需的标头:

    yum install curl-devel
    (expat-devel-1.95.8-8.3.el5_5.3.i386  was already installed).
    
  2. git从中删除/usr/local(因为我希望新安装在那里)。

    我只是git*/usr/local/share/usr/local/libexec

  3. 搜索包含头文件curlexpat头文件的包含目录,然后(因为我已经通读configure)将这些添加到环境中,如下所示:

    export CURLDIR=/usr/include 
    export EXPATDIR=/usr/include
    
  4. 使用configure以下选项运行,这些选项再次在configure文件本身中进行了描述,也是默认设置,但到底是什么:

    ./configure  --with-curl --with-expat
    
  5. 现在http可以git通过我的公司防火墙使用:

    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
    ...
    
于 2012-02-26T02:13:22.567 回答
6

这对我有用。

git config --global http.proxy proxy_user:proxy_passwd@proxy_ip:proxy_port
于 2016-10-24T03:22:03.083 回答
5

只是为了发布这个,因为它是 Google 上的第一个结果,我发现这篇博文通过更新 curl 证书为我解决了这个问题。

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

于 2011-08-26T14:56:53.027 回答
4

使用代理链

proxychains git pull ...

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

于 2017-03-22T14:52:40.913 回答
4

值得一提的是:网络上的大多数示例都显示了类似的示例

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 机器上)可以识别并提示在 repo-access 时输入代理密码。

于 2019-12-11T09:36:58.687 回答
3

您可以使用:

git config --add http.proxy http://user:password@proxy_host:proxy_port
于 2017-02-21T17:29:37.347 回答
3

以下方法对我有用:

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 注意:修改你的 ~/.bashrc 文件而不是 ~/.bash_profile。
于 2019-11-27T04:11:39.010 回答
2

对于 Windows

转到 --> C:/Users/user_name/gitconfig

使用以下详细信息更新 gitconfig 文件

[http]

[https]

proxy = https://your_proxy:your_port

[http]

proxy = http://your_proxy:your_port

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

Internet Explorer -> 设置 -> Internet 选项 -> 连接 -> LAN 设置

于 2016-02-02T08:50:06.130 回答
1

这不是您的代理的问题。这是github(或git)的问题。在 Linux 上的 git-1.6.0.1 对我来说也失败了。 错误已被报告(由您报告)。

确保删除你的馅饼,它们已经在谷歌上。编辑:一定是在做梦,我猜你不能删除它们。改用Gist吗?

于 2008-09-24T19:02:45.563 回答
1

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

于 2013-04-19T07:27:36.600 回答
1

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

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

我能够推送、拉取、创建新的存储库。一切正常。如果您像我一样遇到 Git 问题,请确保您彻底卸载并重新安装新版本。

于 2013-08-10T01:40:01.900 回答
1

正如@user2188765 已经指出的那样,尝试将git://存储库的协议替换为http[s]://. 另请参阅此答案

于 2016-04-07T08:05:13.600 回答
1

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

git config --global 'http.https://github.com/.proxy' http://proxy.mycompany:80
于 2021-03-31T14:28:48.390 回答
0

我使用 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
于 2014-03-19T16:58:28.223 回答
0

正如许多人回答的那样,但这仅适用于具有身份验证的代理背后的Winodws USER。

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

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"

如果您在用户/密码中有任何特殊字符,请使用url_encode

于 2016-03-02T15:05:18.410 回答