我在尝试推或拉时突然开始收到以下错误消息:
ssh: connect to host github.com port 22: Operation timed out
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
and the repository exists.
如何查看我是否拥有"正确的访问权限"?我已经在这个存储库上工作了很长时间,从来没有遇到过问题。
我做错了什么?
答案 0 :(得分:1)
不知道是否还有人需要解决这个问题。遇到了同样的问题,我通过以下链接找到了解决方案。
创建或编辑 ~/.ssh/config
并附加以下内容:
Host github.com
Hostname ssh.github.com
Port 443
您可以从这里阅读:https://amesbury.it/git/github/2018/05/15/port22-blocked-github.html
答案 1 :(得分:0)
我遇到了同样的问题,并通过从~/.ssh/known_hosts
文件中删除了github条目来解决了这个问题。