hexo遇到的一点小问题

缘由

太懒了好久没更新博客,刚好想更新一下就在部署时出现了问题,在找遍网络后,最后找到一个解决办法

摇:ssh: connect to host github.com port 22: Connection refused - 知乎 (zhihu.com)

22端口超时,只能用443端口了

1
2
3
4
5
6
7
8
9
10
$ vim ~/.ssh/config
```
# Add section below to it
Host github.com
Hostname ssh.github.com
Port 443
```
$ ssh -T git@github.com
Hi xxxxx! You've successfully authenticated, but GitHub does not
provide shell access.

修改.ssh/中的config,如果没有新建一个即可。

完美解决!


hexo遇到的一点小问题
http://example.com/2024/10/13/hexo遇到的小问题/
作者
piiick
发布于
2024年10月13日
许可协议