異常
在連接github時,執(zhí)行”ssh -T git@github.com” 命令時,出現(xiàn)
ssh: connect to host github.com port 22: Connection timed out
解決方法
在存放公鑰私鑰(id_rsa和id_rsa.pub)的文件里捕犬,新建config文本,內容如下
Host github.com ?
User YourEmail@163.com
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 XXX@xx.com