【hexo】问题:port 443: Timed out

hexo g -d 出现问题:port 443: Timed out

解决方案

  • 查看是否能连接 github
1
2
$ ssh -T git@github.com
# Hi ...! You've successfully authenticated, but ... 则表示能连接
  • 改配置:配置的Github远程仓库的地址最好使用SSH的地址。
1
2
3
4
5
# site root directory
deploy:
type: git
repo: ssh://git@github.com/pzlu/pzlu.github.io.git
branch: master

参考