問題明顯是連接超時,網上看了很多回答都是用代理解決的。廢話不多講,直接給出最簡單的解決方案。
下面是解決方案:
1、首先找到git的安裝目錄,找到/etc/ssh/ssh_config文件
2、用記事本或者notepad++打開,復制這幾句到該文件最后
Host github.com (如果是gitlab就是gitlab.com)
User git
Hostname ssh.github.com (如果是gitlab就是gitlab.com)
PreferredAuthentications publickey
IdentityFile ~/.ssh/id_rsa
Port 443
3、解決
