Hexo 双线部署

一、coding部署

  • 到Coding注册账号
  • 添加ssh公钥,可参考这篇文章
  • 创建项目、仓库名任意,配置pages服务

二、github部署

  • 创建仓库,仓库名必须为yourname.github.ioyourname为用户名
    当你的仓库名为:用户名.github.io 之后默认开启Github Pages
  • 添加ssh key

三、_config.yml修改

修改站点配置文件deploy信息如下

# Deployment
## Docs: https://hexo.io/docs/deployment.html
deploy:
  type: git
  repo:
      github: [email protected]:yourname/yourname.github.io.git
      coding: [email protected]:yourname/yourname.git

四、执行部署

hexo d -g

你可能感兴趣的:(Hexo 双线部署)