hexo博客Hexo常用命令
John DoeHexo常用命令列表
1 2 3 4 5 6 7 8 9
| hexo init hexo new "postName" hexo new page "pageName" hexo generate hexo server hexo deploy hexo clean hexo help hexo version
|
Hexo命令简写说明
1 2 3 4 5
| hexo n == hexo new hexo g == hexo generate hexo s == hexo server hexo d == hexo deploy hexo cl == hexo clean
|
常用组合命令
清除缓存、生成本地页面 http://localhost:4000/ ,进行预览
1 2 3 4 5 6 7
| // Git BASH终端 hexo cl && hexo s
// 或者
// VSCODE终端 hexo cl; hexo s
|
清除缓存、重新生成静态文件、同时部署至GitHub仓库
1 2 3 4 5 6 7
| // Git BASH终端 hexo cl && hexo g && hexo d
// 或者
// VSCODE终端 hexo cl; hexo g; hexo d
|
Hexo常用命令
初始化一个本文件夹为网站的根目录
详见:https://hexo.io/zh-cn/docs/setup
Hexo常用命令
生成静态文件
详见:https://hexo.io/zh-cn/docs/generating.html
清理缓存文件
监视文件变动
Hexo复合命令说明
1 2 3 4
| hexo deploy -g hexo d -g hexo server -g hexo s -g
|
Hexo官方地址:https://hexo.io/zh-cn/
Hexo官方文档:https://hexo.io/docs/
Hexo问题解答:https://hexo.io/docs/troubleshooting.html
Hexo问题列表:https://github.com/hexojs/hexo/issues