问题描述

之前使用 Git 推送本地仓库至远程仓库时没问题,今天突然出现了这个错误,使用了“黑科技”之后仍然还会出现这个错误。(以前也遇到过,但都是网络问题,自己就好了)

检查连接

  1. 首先输入以下命令检查SSH是否能够连接成功(ssh后面有空格)
1
ssh -T git@github.com

发现报错:端口连接超时。

1
2
3
4
5
ssh: connect to host github.com port 22: Connection timed out
fatal: Could not read from remote repository.

Please make sure you have the correct access rights
and the repository exists.

解决方案

在C盘——用户——你的主机名文件夹中找到 .ssh 文件夹;(此前配置SSH时会生成该文件夹)
在 .ssh 文件夹中新建文件 config.txt ,输入以下内容,将 xxxxqq.com 更改为你的邮箱,并保存。

最后,去掉 .txt 后缀

1
2
3
4
5
6
Host github.com
User xxxxqq.com
Hostname ssh.github.com
PreferredAuthentications publickey
IdentityFile ~/.ssh/id_rsa
Port 443

再次执行

1
ssh -T git@github.com

会出现以下提示,输入 yes 回车即可

1
2
3
4
The authenticity of host '[ssh.github.com]:443 ([192.30.255.123]:443)' can't be established.
RSA key fingerprint is SHA256:xxx.
Are you sure you want to continue connecting (yes/no)? yes
Warning: Permanently added '[ssh.github.com]:443,[192.30.255.123]:443' (RSA) to the list of known hosts.

再次执行ssh -T git@github.com,发现验证通过

1
Hi Clare! You've successfully authenticated, but GitHub does not provide shell access.

接下来可以正常上传代码