Mac git连接github报错

异常

在连接github时,执行”ssh -T [email protected]” 命令时,出现

ssh: connect to host github.com port 22: Connection timed out

解决方法

在存放公钥私钥(id_rsa和id_rsa.pub)的文件里,新建config文本,内容如下

Host github.com �
User [email protected]
Hostname ssh.github.com
PreferredAuthentications publickey
IdentityFile ~/.ssh/id_rsa
Port 443
:wq保存退出
最后为了重新刷新config,还需要配置:
git config --global user.name "XXX"
git config --global user.email [email protected]

你可能感兴趣的:(Mac git连接github报错)