解决GitHub代码Clone和Push失败的问题

2023 年 8 月 4 日 星期五
2

解决GitHub代码Clone和Push失败的问题

git报错Failed to connect to github.com port 443 after 21224ms: Timed out

报错情况: 在git clone或则git push时,一直报错Failed to connect to github.com port 443 after xxxms: Timed out

报错前提:

  • 网页可以打开github
  • 电脑开了VPN

解决办法:配置http代理

windows 中git默认不会使用系统代理,所以即使连接代理或者打开代理软件,浏览器仍然访问Github,但是使用git命令连接github仓库可能会出现无法访问的现象,通过为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

注意事项:

  • 命令中的主机号127.0.0.1是使用的代理主机号,如果代理VPN不是本机,则需要填入代理主机的IP
  • 命令的端口号是代理软件的监听IP
  • socks5和http两种协议由使用的代理软件决定,不同的软件对这两种协议的支持有差异。
  • 主机号和端口号可以在代理的位置查看

查看代理命令 cmd git config --global --get http.proxy git config --global --get https.proxy

取消代理命令 cmd git config --global --unset http.proxy git config --global --unset https.proxy

使用社交账号登录

  • Loading...
  • Loading...
  • Loading...
  • Loading...
  • Loading...