仅仅通过本地改 hosts, 或者切换 443 ssh.github.com, 很多时候已经无能为力了。 有什么好的简便的方法 使用海外主机作为跳板机,端口转发之类的技术, 让本地提交 github 代码更加顺畅? 已经可以通过 ssh 端口转发,让浏览器走海外服务器出去。 比如: ssh -N -f -L LOCAL_PORT:REMOTE_HOST:PORT -o TCPKeepAlive=yes 然后本地走 local 的 LOCAL_POST ,数据就可以从 REMOTE_HOST 出去? 不过不知道本地的 git 如何配置才行,shell 设置 proxy 不管用。 git, ssh, 端口, 海外
vim ~/.ssh/config: Host github.com IdentityFile ~/.ssh/id_rsa ProxyCommand nc -X 5 -x 127.0.0.1:7890 %h %p 127.0.0.1:7890 是本地的 socks5 proxy 。IdentityFile 和 ProxyCommand 是有缩进的。