• 解决github拉取推送超时的解决方案
  • 发布于 1天前
  • 21 热度
    1 评论
这两天好像 github 拉取推送都超时了~
方案一.在 ~/.ssh/config 中添加
Host github.com
  User git
  HostName github.com
  ProxyJump proxyserver
  
Host proxyserver
  User root
  HostName your_server_ip
  IdentityFile xxx

其中 proxyserver 是你 hk 或海外可以直连 github 的服务器.

方案二. 直接使用已有代理更加简单方便

Host github.com
  User git
  HostName github.com
  ProxyCommand ncat --proxy-type socks5 --proxy 127.0.0.1:9999 %h %p
提示没有ncat的话需要先安装!

用户评论