github操作显示ssh: connect to host github.com port 22: Connection refused
执行git操作显示如下内容
ssh: connect to host github.com port 22: Connection refused
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
and the repository exists.
1. 原因
连接22端口被拒绝,排查后发现网站访问github一切正常,但是就是执行git操作时候会超时,排除网络故障,此时查阅资料得知可以把端口换成443
2. 解决方案
给
.ssh/config
文件里添加如下内容
Host github.com
Hostname ssh.github.com
Port 443
找到上述文件,如果找不到可以用
everything
这个软件搜索
如果里面没有config文件,添加一个即可