Hexo 基本命令

init

1
$ hexo init [dir_name]

新建一个网站,如果 dir_name 为空,则表示在当前目录创建网站。

new

1
$ hexo new [layout] <title>

创建一篇文章,layout 默认使用 _config.yml 中的 default_layout 参数代替。titile 为文章标题。

generate

1
2
$ hexo generate
$ hexo g #简写

生成静态文件。

server

1
$ hexo server

启动服务器,默认访问网址为 http://localhost:4000

参数 -p 表示设置启动服务的端口

deploy

1
2
$ hexo deploy
$ hexo d # 简写

部署网站。

部署网站可以简写为如下两个命令

1
2
$ hexo g -d  # 等价于 $ hexo generate -d
$ hexo d -g # 等价于 $ hexo deploy -g

clean

1
$ hexo clean

清除缓存文件 db.json 和已生成的静态文件 public/

version

1
$ hexo version

显示 Hexo 版本。

本文标题:Hexo 基本命令

文章作者:javaliu

发布时间:2018年07月01日 - 15:26

最后更新:2021年11月22日 - 20:45

原始链接:https://www.javaliu.com/2018/07/01/blog-hexo-command/

许可协议: 署名-非商业性使用-禁止演绎 4.0 国际 转载请保留原文链接及作者。

坚持原创技术分享,您的支持将鼓励我的继续创作