目录

Hugo发布博客流程

目录
警告
本文最后更新于 2021-07-01,文中内容可能已过时。

使用 hugo 编写文章必会指令

1.新建文章

在博客根目录下进行,我的根目录为F:\hugo\myblog,使用下面指令在post文件夹下新建,新建后将draft修改为false

1
hugo new posts/xxxx.md

2.本地预览和修改

可在http://localhost:1313/预览和修改内容

1
2
3
hugo server
hugo server -e production(可以展示评论,cdn等内容)

3.本地生成静态资源

1
hugo

4.提交 public 资源到 github 仓库

1
2
3
git add .
git commit -m '提交说明'
git push -u origin master

5.gitee搭建博客参考

使用Hugo + Gitee Pages 搭建个人博客