其他分享
首页 > 其他分享> > Hugo+github博客第一次上传到github及提交更新

Hugo+github博客第一次上传到github及提交更新

作者:互联网

首先在 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

标签:git,Hugo,博客,cd,add,github,io,yourname
来源: https://www.cnblogs.com/YONILOCElolo/p/15009126.html