hexo 命令

常用的hexo的命令

hexo新建文章

hexo文件夹下右键点击Git Base here后键入$hexo new 布局 "文章名"

布局 路径 注释
post source/_post 新建一个文章
draft source/_drafts 新建一个草稿文件
page source 新建一个页面文件

hexo部署与调试

1
2
3
4
5
6
7
$ hexo clean //清除静态页面缓存(清除 public 文件夹)         
$ hexo g //在本地生成静态页面(生成 public 文件夹)
$ hexo s //启动本地服务 http://localhost:4000,进行预览调试
$ hexo d //远程部署,同步到 GitHub

$ npm install hexo-deployer-git --save //自动部署
$ hexo clean && hexo g && hexo d //发布

hexo 命令
http://blog.cgwayne.com/2022/hexo-code.html
作者
John Wayne
发布于
2022年10月26日
许可协议