【hexo指南】hexo发布内容到多个git仓库

hexo的deploy git自身支持发布到多个仓库,这里只需要稍微调整下配置即可

1
2
3
4
5
6
7
8
# config.yml
deploy:
type: git
repo:
- https://github.com/hexojs/hexojs.github.io
- https://github.com/hexojs/hexojs2.github.io
- https://github.com/hexojs/hexojs3.github.io
branch: master

现在运行hexo deploy查看下效果,如果发现部署的内容偏旧,先运行hexo g更新一下内容

参考和推荐