git pull 出现:ssh_dispatch_run_fatal: Connection to 52.74.223.119 port 22

git pull 出现:ssh_dispatch_run_fatal: Connection to xx.xx.xxx.xxx port xx

mac系统解决办法

1、找到/etc/hosts
2、在hosts文件后面追加

192.30.255.112  github.com git 
185.31.16.184 github.global.ssl.fastly.net

终端git pull,不再报错

但是终端pull时,需要输入密码,Github Desktop 也拉不下来,解决办法:

$ ssh-add -K ~/.ssh/id_rsa

参考:生成新 SSH 密钥并添加到 ssh-agent

这样做有个问题就是每次电脑重启都需要重新执行这个命令,可以把这个命令写到.bash_profile,然后在.zshrc加上

source ~/.bash_profile

上面的ip地址貌似现在用不了了,可以换成下面的地址

52.74.223.119    github.com
185.199.111.153  assets-cdn.github.com
151.101.193.194  github.global.ssl.fastly.net

上面的ip地址貌似现在又又又不好用了,可以换成下面的地址

192.30.255.112  github.com git 
185.31.16.184 github.global.ssl.fastly.net

你可能感兴趣的:(Git)