用GitHub Page和Hexo搭建个人博客

步骤

  1. 安装Node.js
  2. 安装Git
  3. 安装Hexo(所有操作均在Windows自带的cmd命令行中运行:npm install -g hexo
  4. 切换到博客目录并初始化:
    1
    2
    # cd d:/w/hexo
    # hexo init

基本命令

1
2
3
4
hexo generate  == hexo g
hexo server == hexo s
hexo deploy == hexo d
hexo new == hexo n

部署到Github

配置_config.yml

1
2
3
4
deploy:
type: git
repo: git@github.com:lyloou/lyloou.github.io.git
branch: master

安装部署

1
2
npm install hexo-deployer-git --save
hexo d

绑定独立域名

  • 在Hexo项目的Source中新建文件CNAME
  • 添加lyloou.com
  • 然后hexo d -g上传即可

常见问题

  • 执行了 hexo d -g后,未能成功部署到网站:请先clean一下,hexo clean

外部链接