赞
踩
在git clone
或者git push
时,一直报错Failed to connect to github.com port 443 after xxx ms: Timed out
windows 中 git 默认不会使用系统代理,所以即使连接代理或者打开代理软件,浏览器仍然可以访问 GitHub 或 Gitee;但是使用 git 命令行连接 GitHub 或 Gitee 远程仓库可能会出现无法访问的现象。通过为 git 配置代理解决出现的问题。
Windows、Linux、Mac OS 中 git 命令相同:
设置代理命令:
# 配置socks5代理
git config --global http.proxy socks5 127.0.0.1:7890
git config --global https.proxy socks5 127.0.0.1:7890
# 配置http代理
git config --global http.proxy 127.0.0.1:7890
git config --global https.proxy 127.0.0.1:7890
注意事项:
查看代理命令
git config --global --get http.proxy
git config --global --get https.proxy
取消代理命令
git config --global --unset http.proxy
git config --global --unset https.proxy
使用 https 协议连接输入账号密码比较麻烦,而使用 SSH 密钥验证连接更方便且安全。可以修改系统中的 SSH 配置设置代理,并且绕过 GFW 的封锁。
Windows平台的git中预置了connect.exe,可以用来接管git的流量。可以通过修改本地SSH配置文件来更改git的代理设置。
Windows平台配置文件位于C:\Users$USERNAME$.ssh\config
,如果没有config
文件,自己创建一个config
文件,其中USERNAME
是当前电脑用户名。
在文件中加入下面配置:
Host github.com *.github.com # 指定代理规则作用域
User git
Port 22 # 端口号
# 自己的私钥所在路径
IdentityFile "~\.ssh\id_rsa"
# SOCKS代理设置方法
ProxyCommand connect -S 172.16.100.211:808 %h %p
# HTTPS代理设置方法
ProxyCommand connect -H 172.16.100.211:808 %h %p
配置文件一般情况下在~/.ssh/config
下,然后添加:
Host github.com *.github.com
User git
Port 22
IdentityFile "~\.ssh\id_rsa"
# SOCKS代理
ProxyCommand nc -v -x 172.16.100.211:808 %h %p
# HTTPS代理
ProxyCommand socat - PROXY:172.16.100.211:%h:%p,proxyport=808
注意事项:
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。