异常:
在使用git命令clone一个项目的时候出现错误:ssh: connect to host github.com port 22: Connection timed out"错误
之前用着好好的突然不能clone了连接不上
解决方法:
找到你的.ssh文件夹,在文件夹里新建一个config文件(没有后缀名只有这个文件),里面写:
Host github.com
User YourEmail@qq.com
Hostname ssh.github.com
PreferredAuthentications publickey
IdentityFile ~/.ssh/id_rsa
Port 443
User为你登录github的账号名称,保存好再拉下来即可。
网友评论