如何让Git使用代理服务器?
我需要从Git服务器中检出代码,但每次都会显示“请求超时”。我该如何解决?
另外,如何设置代理服务器?
如何让Git使用代理服务器?
我需要从Git服务器中检出代码,但每次都会显示“请求超时”。我该如何解决?
另外,如何设置代理服务器?
Answers:
使用命令:
git config --global http.proxy http://proxyuser:proxypwd@proxy.server.com:8080
proxyuser
为您的代理用户proxypwd
为您的代理密码proxy.server.com
为代理服务器的URL8080
为代理服务器上配置的代理端口请注意,这适用于http和https仓库。
如果您决定随时重置此代理并在没有代理的情况下工作:
使用命令:
git config --global --unset http.proxy
最后,检查当前设置的代理:
git config --global --get http.proxy
%40
代替@
in用户名/密码字符串,尽管我自己尚未对此进行测试。希望能帮助到你。:-)
在公司防火墙后面的Windows XP中,这对我有用。
除了http://code.google.com/p/msysgit/downloads/list上的 git v1.771之外,我无需安装任何本地代理或任何其他软件?can = 3
$ git config --global http.proxy http://proxyuser:proxypwd@proxy.server.com:8080
$ git config --system http.sslcainfo /bin/curl-ca-bundle.crt
$ git remote add origin https://mygithubuser:mygithubpwd@github.com/repoUser/repoName.git
$ git push origin master
proxyuser =我的IT部门分配的代理用户,就我而言,它是我用来登录PC的Windows用户,即Active Directory用户
proxypwd =我的代理用户的密码
proxy.server.com:8080 =代理名称和端口,我从“控制面板”,“ Internet选项”,“连接”,“局域网设置”按钮,“代理服务器”部分内的“高级”按钮获得,使用第一行(http)中的服务器名称和端口。
mygithubuser =我用来登录github.com的用户
mygithubpwd =我的github.com用户的密码
repoUser =回购的用户所有者
repoName =回购的名称
git config --global http.sslcainfo MY_NEW_CERTS_BUNDLE.crt
加上按simplicidade.org/notes/archives/2011/06/…中所述下载的证书(感谢:stackoverflow.com/a/7206627/98528)为我做到了!
git://
协议克隆存储库时,git仍然不起作用。
设置命名的系统变量http_proxy
具有的价值ProxyServer:Port
。那是最简单的解决方案。分别https_proxy
作为大夫在评论中指出的用途。
设置gitproxy(如sleske所提到的)是另一种选择,但是需要一个“命令”,它不如上面的解决方案那么简单。
参考:http : //bardofschool.blogspot.com/2008/11/use-git-behind-proxy.html
如果配置代理服务器的命令行方法不起作用,则可以只编辑.gitconfig(在配置文件的根目录中,它可能同时隐藏在C:\ Documents和Settings以及某些网络驱动器中)并添加:
[http]
proxy = http://username:password@proxy.at.your.org:8080
但是,YMMV仅涵盖命令行配置的第一步。您可能也必须编辑系统git配置,我不知道他们将其隐藏在哪里。
如果您使用的是ubuntu,请执行以下操作...
步骤1:安装开瓶器
$ sudo apt-get install corkscrew
步骤2:编写一个名为git-proxy.sh的脚本,并添加以下内容
#!/bin/sh
exec corkscrew <name of proxy server> <port> $*
# <name_of_proxy_server> and <port> are the ip address and port of the server
# e.g. exec corkscrew 192.168.0.1 808 $*
步骤3:使脚本可执行
$ chmod +x git-proxy.sh
步骤4:通过设置环境变量来设置GIT的proxy命令
$ export GIT_PROXY_COMMAND="/<path>/git-proxy.sh"
现在使用git命令,例如
git clone git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
"$@"
而不是$*
。有关更多详细信息,请参见您的Shell手册。
由于.gitconfig
Windows中存在多个文件,因此遇到了相同的问题,请按照以下步骤修复该问题:
步骤1:开启Git BASH
步骤2:寻找.gitconfig
,执行以下命令:
git config --list --global --show-origin
步骤3:将以下内容复制到中.gitconfig
:
[http]
proxy = http://YOUR_PROXY_USERNAME:YOUR_PROXY_PASSWORD@YOUR.PROXY.SERVER:YOUR.PROXY.SERVER.PORT
sslverify = false
[https]
proxy = http://YOUR_PROXY_USERNAME:YOUR_PROXY_PASSWORD@YOUR.PROXY.SERVER:YOUR.PROXY.SERVER.PORT
sslverify = false
[url "http://github.com/"]
insteadOf = git://github.com/
[user]
name = Arpit Aggarwal
email = aggarwalarpit.89@gmail.com
对于git协议(git:// ...),请安装socat并编写如下脚本:
#!/bin/sh
exec socat - socks4:your.company.com:$1:$2
将其设置为可执行文件,并将其放在您的路径中,并~/.gitconfig
设置core.gitproxy
为该脚本的名称。
socat STDIO PROXY:%proxy%:%1:%2,proxyport=%PROXYPORT%
set GIT_PROXY_COMMAND=path\to\script
用来使GIT使用代理而不会弄乱git config。
我发现了一些要分享的内容:
git config --global http.proxy http://<proxy address>:<port number>
上面的方法不适用于ssh网址(即git@github.com:<user name>/<project name>.git
):
git clone git@github.com:<user name>/<project name>.git // will not use the http proxy
如果我们通过HTTPS端口设置SSH(https://help.github.com/en/articles/using-ssh-over-the-https-port)因为它只会更改端口(默认为22) )ssh连接连接到。
(不是讲英语的人,请在必要时细化我的语言)
我在工作中(state / gov)上使用Windows XP,因此我进行了研究,并在这里找到了它,它很适合我。希望这可以帮助 :)
http_proxy环境变量
如果使用代理服务器或防火墙,则可能需要设置http_proxy环境变量,以便从命令行访问某些URL。示例:在Linux上安装ppm for perl或应用rpm,更新ubuntu
使用代理服务器的主机名或IP地址设置http_proxy变量:http_proxy = http:// [proxy.example.org]
如果代理服务器需要用户名和密码,请以以下形式包括它们:http_proxy = http:// [username:password@proxy.example.org]
如果代理服务器使用的端口不是80,则包括以下端口号:http_proxy = http:// [username:password@proxy.example.org:8080]
Windows XP
- 打开控制面板,然后单击系统图标。
- 在“高级”选项卡上,单击“环境变量”。
- 在“系统变量”面板中单击“新建”。
- 添加带有适当代理信息的http_proxy(请参见上面的示例)。
Linux,Solaris或HP-UX
使用特定于您的Shell的命令(例如set或export)设置http_proxy环境变量。要使更改永久生效,请将命令添加到外壳程序的相应配置文件中。例如,在bash中,将以下内容添加到.bash_profile或.bashrc文件中:
- http_proxy = http:// [用户名:密码@主机名:端口];
- 导出$ http_proxy
除了这些答案,我发现考虑以下两点也很有帮助:
可能需要实施一种身份验证方案:
[http]
# https://github.com/git/git/blob/master/Documentation/config.txt
proxyAuthMethod = anyauth|basic|digest|negotiate|ntlm
同样,通常使用NTLM身份验证架构,可能需要显式提供AD域。
在git bash中:
echo %userdomain%
并相应地更新http.proxy:
git config --global http.proxy http://DOMAIN\\proxyuser:proxypwd@proxy.server.com:8080
无论如何,可以通过添加CURL日志来帮助调查:
export GIT_CURL_VERBOSE=1
git config --global http.proxyAuthMethod basic
。直到我设置了此配置参数,Git gersion 2.8.3才发送任何身份验证。
如果你的tsocks或proxychains安装和配置,你可以
$ tsocks git clone <you_repository>
要么
$ proxychains git clone <you_repository>
使其更短,我创建了一个符号链接/usr/bin/p
的proxychains
,这样我就可以使用它像这样
p git clone <you_repository>
我可以用它来代理任何命令,
p <cmd-need-be-proxied>
顺便说一句,proxychains长时间未更新,您可能想尝试proxychians-ng
在终端上设置git代理
如果
一次全局设置
git config --global http.proxy username:password@proxy_url:proxy_port
git config --global https.proxy username:password@proxy_url:proxy_port
如果您只想为一个git项目设置代理(在某些情况下,对于某些git连接,您可能根本不想使用同一代理或任何代理)
//go to project root
cd /bla_bla/project_root
//set proxy for both http and https
git config http.proxy username:password@proxy_url:proxy_port
git config https.proxy username:password@proxy_url:proxy_port
如果要显示当前的代理设置
git config --list
如果要全局删除代理
git config --global --unset http.proxy
git config --global --unset https.proxy
如果您只想删除一个git根的代理
//go to project root
cd /bla-bla/project_root
git config --unset http.proxy
git config --unset https.proxy
我遵循这里推荐的大多数答案。首先我得到以下错误:
致命:无法访问' https://github.com/folder/sample.git/':schannel:next InitializeSecurityContext失败:未知错误(0x80092012)-吊销功能无法检查证书的吊销。
然后我尝试了@Salim Hamidi的以下命令
git config --global http.proxy http://proxyuser:proxypwd@proxy.server.com:8080
但我收到以下错误:
致命:无法访问“ https://github.com/folder/sample.git/”:CONNECT后从代理接收到HTTP代码407
如果代理服务器无法验证SSL证书,则可能会发生这种情况。因此,我们要确保ssl验证已关闭(不建议非信任站点使用),因此我完成了@Arpit建议的以下步骤,但做了一些细微改动:
1.首先请确保删除任何以前的代理设置:
git config --global --unset http.proxy
2.然后列出并获取gitconfig内容
git config --list --show-origin
3.最后更新gitconfig文件的内容,如下所示:
[http]
sslCAInfo = C:/yourfolder/AppData/Local/Programs/Git/mingw64/ssl/certs/ca-bundle.crt
sslBackend = schannel
proxy = http://proxyuser:proxypwd@proxy.server.com:8080
sslverify = false
[https]
proxy = http://proxyuser:proxypwd@proxy.server.com:8080
sslverify = false
我尝试了上述所有答案,但对我没有任何帮助,因为存在代理密码编码问题。
此命令有效:
git config --global http.proxy http://username@proxy.example.com:PortNumber
不要在命令中输入密码。当您尝试连接到任何git repo时,它将动态询问。
经过不懈地尝试此页面上的所有解决方案之后,我的解决方法是改用SSH密钥!