我正在做一些基本的演示與JavaScript頁面 - 使用github不僅作爲源代碼管理,而且還作爲託管服務提供商。我怎樣才能擁有一個gh-pages分支?
我只想在gh-pages分支上工作,或者讓它自動反映我對主人的更改,無論更簡單和更清晰。
我試圖刪除的主分支,但它不會讓我:
$ git push origin --delete master
remote: error: refusing to delete the current branch: refs/heads/master
To [email protected]:opensas/geo-demo.git
! [remote rejected] master (deletion of the current branch prohibited)
我只是希望有一個單一的分支(主或GH-頁),無論我提交和推到它出現在github頁面中。
完成此操作的最佳方法是什麼?
愚蠢的問題,謝謝!它工作正常 – opensas