hexo 配置

使用hexo + git 实现简易 Blog

安装 hexo

  1. 全局安装hexo

    1
    npm i hexo-cli -g
  2. 移动到存放 blog 内容的目录

    1
    cd <目录>
  3. 生成 blog 目录

    1
    hexo init <目录名称>
  4. 移动到 blog 目录下

    1
    cd <blog 目录>
  5. 安装 hexo 依赖

    1
    npm i
  6. 启动 hexo 服务,查看效果

    1
    hexo server

安装 hexo-deployer-git

  1. 安装 hexo-deployer-git

    1
    npm install hexo-deployer-git --save
  2. _config.yml 中配置插件

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    deploy:
    type: git
    repo: <repository url>
    branch: [branch]
    token: ''
    message: [message]
    name: [git user]
    email: [git email]
    extend_dirs: [extend directory]
    ignore_hidden: false # default is true
    ignore_pattern: regexp # whatever file that matches the regexp will be ignored when deploying
  3. 发布 blog

    1
    2
    hexo g
    hexo d