hexo常用命令

hexo安装

1
2
3
npm install hexo -g //安装
npm update hexo -g //升级
hexo init //初始化

hexo命令

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
hexo n "我的博客" //新建文章-简写
hexo new "我的博客" //新建文章
hexo new page "title" //新建页面
hexo new post "title" //写作
hexo new photo "My Gallery" //模版
hexo p //草稿-简写
hexo publish [layout] <title> //草稿
hexo g //生成静态页面至public目录 使用 Hexo 生成静态文件快速而且简单 -简写
hexo generate //生成静态页面至public目录 使用 Hexo 生成静态文件快速而且简单
hexo generate --watch //监视文件变动
hexo s //启动服务预览/开启预览访问端口(默认端口4000,'ctrl + c'关闭server)-简写
hexo server //启动服务预览/开启预览访问端口(默认端口4000,'ctrl + c'关闭server)
hexo d //开始部署,将.deploy目录部署到GitHub-简写
hexo deploy //将.deploy目录部署到GitHub
hexo server //Hexo 会监视文件变动并自动更新,您无须重启服务器。
hexo server -s //静态模式
hexo server -g //完成后部署
hexo server -p 5000 //更改端口为5000
hexo server -i 192.168.1.1 //自定义 IP
hexo clean //清除缓存 网页正常情况下可以忽略此条命令
hexo generate --deploy //完成后部署
hexo deploy --generate //完成后部署
hexo d -g //完成后部署-简写
您的支持将鼓励我继续创作!