目录

Hugo 常用指令

目录

一些常用的 Hugo 指令

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15

# 在 posts 目录下新建一篇文章 filename.md
hugo new posts/filename.md

# 本地模拟生产环境
hugo serve -e production


# 清空 public 目录下文件,并基于 "/" 路径 重新构建网站
# (也就是说博客的访问路径是 http://example.com/hello-world )
hugo --baseUrl="/" --cleanDestinationDir

# 实际中,因 baseUrl 会影响到 sitemap,所以推荐使用绝对路径
hugo --baseUrl="https://xuxun.cool" --cleanDestinationDir

更多指令说明,建议命令行输入 hugo --help 或者参考官方文档

Hugo 小贴士

  1. 文章的 date 如果大于当前时间,则不会生成文章





ps:小彩蛋,goolge cheetsheet 关键词,发现一个网站

最下面有一栏,the only thing you need,有点意外

传送门:http://www.cheat-sheets.org/#OnlyOne