【Github】ssh: connect to host github.com port 22: Connection refused

发布时间:2024年01月17日

ssh: connect to host github.com port 22: Connection refused

近日在进行push的时候出现以下错误:

$ git push
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.

解决思路:
参考资料:

Host github.com
  Hostname ssh.github.com
  Port 443

然后保存,Git中输入一下密令:

ssh -T git@github.com

在这里插入图片描述
使用ssh -T git@github.com来测试和GitHub的网络通信是否正常,如果提示Hi xxxxx! You’ve successfully authenticated, but GitHub does not provide shell access. 就表示一切正常了。

然后就可以正常上传了。

文章来源:https://blog.csdn.net/weixin_43835470/article/details/135642699
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。