Hexo+Github(0x02)-部署到github

  1. github上新建仓库

    • 仓库名(固定写法):<个人github用户名>.github.io
  2. 安装hexo部署到github的插件

    • 切换到博客根目录下安装:
    1
    npm install --save hexo-deployer-git
  3. 修改_config.yml

    • 在文件最底部作如下修改:
    1
    2
    3
    4
    5
    deploy:
    type: git
    repo: https://github.com/<username>/<project> //github仓库地址
    # example, https://github.com/hexojs/hexojs.github.io.git
    branch: master
  4. 部署到github

    1
    hexo deploy
  5. 访问博客地址

    1
    https://<github用户名>.github.io