GitHub Pages的index.html無法顯示


GitHub Pages 架站,但 index.html 無法顯示,一直回報 404 。 經過搜尋 [1] 後,發現解答 [2] 可以解決這個問題:

# 刪除GitHub上的 gh-pages branch
$ git push origin --delete gh-pages
# 刪除本機上的 gh-pages branch
$ git branch -D gh-pages
# 重新初始化 git
$ git init
# 重新初始化本機的 gh-pages branch
$ git branch gh-pages
# 將本機的 gh-pages push到 GitHub
$ git push origin gh-pages

References:

[1]
[2]How to fix page 404 on Github Page? - Stack Overflow