使用 Git 從頭開始建立頁面

  1. 建立新儲存庫或克隆現有儲存庫。
  2. 建立一個名為 gh-pages 的新分支,沒有任何歷史記錄
$ git checkout --orphan gh-pages

# ensure you are in the correct directory then,
# remove all files from the old working tree
$ git rm -rf
  1. 將 index.html 檔案新增到儲存庫的根目錄。
$ echo "Hello World" > index.html
$ git add index.html
$ git commit -a -m "First pages commit"
  1. 推送到 Github。
$ git push origin gh-pages

你現在可以在 http(s)://<username>.github.io/<projectname> 載入新的 Github Pages 站點