首先在 GitHub 上创建一个Repository,命名为yourname.github.io
把 config.toml 或 config.yaml 里的 basaeURL 修改为 https://yourname.github.io/
cd 你的 public 目录,按照正常 Git 命令操作即可
第一次提交
$ cd public
$ git init
$ git remote add origin https://github.com/yourname/yourname.github.io.git
$ git add -A
$ git commit -m "first commit"
$ git push -u origin master
更新文章后
生成新的静态页面
hugo --theme=your-theme-name --baseUrl="https://yourname.github.io/" --buildDrafts
更新提交
$ cd public
$ git add .
$ git status
$ git commit -m "add blog post"
$ git push