HUGO命令整理
约 103 字
预计阅读 1 分钟
hugo的常用命令整理
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# 创建Hugo 静态网站
hugo new site mywebsite
# 新建一篇文章
hugo new posts/test.md
# 本地测试
hugo serve
# 生成网站文件(发布网站)
hugo
# 以下为git提交相关命令
git init
git add .
git commit -m "init"
git remote add origin example.com
git push -f origin master
|