一、前言
作者由于长期不用git,这次用突然报错Please make sure you have the correct access rights and the repository exists
很绝望,从网上找了一下午,都说要重新配置ssh密钥。但是重新配了很多次都没有用。使用 ssh -T git@github.com
也一直报错误ssh: connect to host github.com port 22: Connection timed out
。
猛然发现好像是,端口错误。下面来就解决他把!!!
二、解决问题
-
首先,重新生成ssh密钥,确保不是密钥问题
-
修改git配置,linux下 ~/.ssh/config,其他系统应该一样在.ssh下生成config文件,写入下面内容。
Host github.com Hostname ssh.github.com Port 443
-
重新打开个终端,使用
ssh -T git@github.com
测试,发现不报错,就没问题啦!
三、最后
如果对您有帮助的话,就给个点赞吧!万分感谢!