hexo 搭建在 github 筆記
快速安裝:參考hexo.io
- 遇到問題 上官網裝一下npm
- 以下是一些 hexo 的安裝指令
npm install hexo-cli -g hexo init blog cd blog npm install hexo server
換主題:
- 跑去github 自己亂找一通,星星越多越穩,官網的很多根本就已經自爆了
- 找到之後把下載到的文件丟到
theme
底下 - 修改
_config.yml
中的theme,剛剛的資料夾叫啥就改啥
建立文章:
hexo new "My New Post"
刪除文章:
- 進到
source/_post
底下砍一砍 - 執行
hexo g
- 執行
hexo d
發佈到github
- 修改文件
_config.yml
url: https://<your name>.github.io
deploy:
type: git # <-- 請修改為 git
repo: https://github.com/<username>/<username>.github.io.git
branch: master # <-- 我沒有修改其他的branch
hexo g
hexo d
主題詳細說明文件
Written on December 14, 2018