使用hexo + git 实现简易 Blog
安装 hexo
全局安装hexo
1
npm i hexo-cli -g
移动到存放 blog 内容的目录
1
cd <目录>
生成 blog 目录
1
hexo init <目录名称>
移动到 blog 目录下
1
cd <blog 目录>
安装 hexo 依赖
1
npm i
启动 hexo 服务,查看效果
1
hexo server
安装 hexo-deployer-git
安装 hexo-deployer-git
1
npm install hexo-deployer-git --save
在
_config.yml
中配置插件1
2
3
4
5
6
7
8
9
10
11deploy:
type: git
repo: <repository url>
branch: [branch]
token: ''
message: [message]
name: [git user]
email: [git email]
extend_dirs: [extend directory]
ignore_hidden: false # default is true
ignore_pattern: regexp # whatever file that matches the regexp will be ignored when deploying发布 blog
1
2hexo g
hexo d