在 ~/.ssh/config 中添加如下内容,没有这个文件就新建一个: ``` Host github.com Hostname ssh.github.com Port 443 ``` 我是这样解决的。
ssh 代理需要单独配置 ``` cat .ssh/config Host github.com Hostname ssh.github.com IdentityFile /Users/xxx/.ssh/id_ed25519 User git Port 443 ProxyCommand nc -v -x 127.0.0.1:7890 %h %p ```