#hugo new site your_site_name
cd your_site_name/
# 初始化git ,使用git子模块 添加主题git init
git submodule add https://github.com/hugo-fixit/FixIt.git themes/FixIt
# 更新同步主题版本git submodule update --remote --merge
2 Hugo相关命令
1
2
3
4
5
6
7
8
9
10
// 新建一个hugo站点
hugo new site yourSiteName
// 新建一篇文章
hugo new posts/notes.md
// 以production 环境运行 hugo 站点
hugo server -e production -D
// 这里注意 serve 是 server 两种写法都可以
hugo serve -e production -D
# 更新模块 Update all moduleshugo mod get -u
# Update all modules recursivelyhugo mod get -u ./...
# Update one modulehugo mod get -u github.com/hugo-fixit/FixIt
# Get a specific version (e.g. v0.3.2, @latest, @master, @dev)hugo mod get github.com/hugo-fixit/[email protected]