1.Hexo 最常用的几个命令

Hexo 最常用的几个命令 - 简书 (jianshu.com)

2.Hexo搭建Butterfly主题并快速美化

【Hexo】Hexo搭建Butterfly主题并快速美化_hexo主题butterfly配置-CSDN博客

3.聚合图床

聚合图床 - 免费无限图片上传 (superbed.cn)

可能的报错:

OpenSSL SSL_connect: Connection was reset in connection to github.com:443

这个问题是vpn代理和git的代理不一致导致的,需要使用如下命令,端口号从vpn软件中查看

1
2
3
4
git config --global --unset http.proxy
git config --global --unset https.proxy
git config --global http.proxy 127.0.0.1:19180
git config --global https.proxy 127.0.0.1:19181

2 stream 1 was not closed cleanly before end of the underlying stream

这个问题是git默认使用的通信协议出现了问题,可以通过将默认通信协议修改为http/1.1来解决该问题

1
git config --global http.version HTTP/1.1