당신이 만든 제작물을 Publishing하고 싶다면 반드시 gh-pages
라는 branch
를 만들어야 한다
만드는 것은 생각보다 간단한데
$ git checkout -b gh-pages //duplicate main branch
$ git push -u origin gh-pages
를 입력하면 끝이난다
그후 당신의 Github
에서 해당 Repository
를 들어가면 우측 하단에 Environments
가 있고
그 밑에 github-pages
가 있는데 이를 클릭해서 view development
를 누르면 당신이 만든 제작물을 볼 수 있다
branch
를 지우고 싶을때는
$ git branch -d <branchname>
으로 지울 수 있다
gh-pages
를 update
하고 싶을 때에는
$ git checkout gh-pages // go to the gh-pages branch
$ git rebase master // bring gh-pages up to date with master
$ git push origin gh-pages // commit the changes
$ git checkout master // return to the master branch
reference
How to Host Your Static Webpages on GitHub Pages
Keep gh-pages up to date with a master branch