hexo的使用

安装Hexo

初始化文件夹

1
2
3
4
$ hexo init myblog

$ cd myblog
$ npm install

安装主题

1
2
3
$ git clone git@github.com:forsigner/fexo.git themes/fexo

$ npm install hexo-deployer-git --save

常用hexo命令

1
2
3
$ hexo g
$ hexo s
$ hexo d

迁移hexo需要移动的文件(夹)

_config.yml
package.json
scaffolds/
source/
themes/
1
2
3
$ npm install hexo-cli -g
$ npm install
$ npm install hexo-deployer-git --save  // 文章部署到 git 的模块
updatedupdated2020-05-252020-05-25