Hexo新手入门指令

一些基本的Hexo cli。

新建博客文件(.md 文件)

1
hexo new "文件名"

清除本地缓存文件和已有的静态文件(public文件夹)

1
hexo clean

生成静态文件(public文件夹)

1
hexo generate

等价于

1
hexo g

启动本地web server (localhost:4000)

1
hexo server

等价于

1
hexo s

参考链接

  1. Hexo教程:(三)使用Hexo写博客