具体详情查看文章 Hexo 指令

新文章、页面

  1. 文章
1
2
3
hexo new <title>

hexo new "标题"
  1. 页面
1
2
3
4
5
6
7
hexo new page [--path <path>] <title>

# 创建在 source/about/index.md 的标题为 "about" 的页面
hexo new page "about"

# 创建在 source/about/me.md 的标题为 "About me" 的页面
hexo new page --path about/me "About me"

生成、发布草稿

1
2
3
4
5
# 生成
hexo new draft <filename>

# 发布
hexo publish <filename>

预览、启动服务器

1
2
3
4
5
6
7
hexo server

# 指定端口
hexo s -p 8080

# 显示草稿
hexo --draft s

生成静态文件

1
2
3
hexo generate

hexo g

部署

1
2
3
hexo deploy

hexo d

清除缓存文件

1
hexo clean