跳转至

Hexo 在同一仓库不同分支提交生成文件和工程

约 173 个字 7 行代码 预计阅读时间 1 分钟

来源:使用hexo,如果换了电脑怎么更新博客? - 知乎

搭建

  1. 创建仓库与两个分支:masterhexo
  2. 设置 hexo 为默认分支。
  3. 克隆仓库。
  4. hexo 分支下搭建环境。
  5. 确保 _config.ymldeploy 参数中的分支为 master

日常改动

  1. hexo 分支执行下面的目录以提交工程:
    1
    2
    3
    git add .
    git commit -m "......"
    git push origin hexo
    
  2. 执行下面的命令以提交生成的网站:
    hexo g -d
    

一般调换顺序不会造成影响,但不建议。

本地资料丢失后

  1. 克隆仓库。
  2. hexo 分支下执行以下命令以安装库:
    1
    2
    3
    npm install hexo
    npm install
    npm install hexo-deployer-git
    
    记得,不需要 hexo init 这条指令。