使用 GitHub Pages 为仓库写网页
程序员文章站
2022-04-17 17:46:24
...
一、使用gh-pages
分支
新建gh-pages
分支
先clone
仓库,就不多说了。
为了与其它分支互不影响,我们要新建一个“孤立”的gh-pages
分支。
git checkout --orphan gh-pages
删除新的gh-pages
分支中的一切文件:
git rm -rf .
或
git rm -rf *
新建index.html
:
echo "" > index.html
提交更改:
git commit -m "Create index.html"
推送gh-pages
分支到服务器:
git push origin gh-pages
修改 GitHub Pages 源
- 打开仓库的Settings:1
- 找到
GitHub Pages
一栏,将Source
从None
改为gh-pages branch
:
- 然后
Save
:
现在,我们修改index.html
以及其它gh-pages
分支中的文件。访问https://<username>.github.io/<repository name>/
就可以看见gh-pages
分支中的网页。
二、使用master
分支中的/docs
目录
新建
在master
分支中新建/docs
目录。
修改 GitHub Pages 源
- 打开仓库的Settings:2
- 找到
GitHub Pages
一栏,将Source
从None
改为gh-pages branch
:
- 然后
Save
:
现在,我们修改index.html
以及其它/docs
中的文件。访问https://<username>.github.io/<repository name>/
就可以看见/docs
中的一切文件(包括网页)。