【hexo】Github + Hexo 搭建个人博客

用 Github + Hexo 搭建个人博客的简要步骤。

一、Github 创建个人仓库

  • 仓库名:用户名.github.io
    • 必须是用户名!(如我的就是 PzLu.github.io)
  • 该仓库下的 Page 内容需要配置(为后续做准备)。

二、安装 Node.js

  • 安装教程略。
1
2
$ node -v
$ npm -v

三、安装 hexo

  • 创建一个文件夹,可以命名为 myBlog,Hexo框架与以后你自己发布的网页都在这个文件夹中。
  • 可以用 vscode 打开,bash 终端操作执行。
  • 安装 hexo
1
$ npm install -g hexo-cli 
  • 初始化 blog
1
$ hexo init blog

四、下载配置自己喜欢的主题并适配

1
2
$ cd blog
$ git clone https://github.com/next-theme/hexo-theme-next themes/next
  • 更换主题,选择 blog 下的 _config.ymltheme 改为 next,记得中间有空格。

五、推送网站

1
$ npm install hexo-deployer-git --save
  • 三步走战略
    • 创建新的:hexo n "xxx-文章名字"
    • 生成:hexo g
    • 部署:hexo d
  • 去自己的网站看看 用户名.github.io (如我的 pzlu.github.io

六、问题

  • 如何用 mac 和 windows 同时维护博客?
    • 我测试了下,好像有些问题,windows 维护的博客,在 mac 上维护后主页会变成空白,目前还没发现问题在哪。

参考