1. 安装go hugo
git clone https://github.com/gohugoio/hugo.git
cd hugo
go install
2. 设置主题
git submodule add https://github.com/panr/hugo-theme-hello-friend.git themes/hello
echo 'theme = "hello"' >> config.toml
3. 发布文章
hugo new posts/my-first-post.md
4. 启动预览
hugo server
hugo server -D # 草稿 draft 为true的文章
5. 部署项目
上传public内的文件到hrbhot.github.io项目
cd public
git init
git add .
git commit -m 'for init blog'
git remote add origin git@github.com:hrbhot/hrbhot.github.io.git #替换成自己的git name
git push -u origin master