Git - branch

Alpaca·2021년 3월 29일
0

Git

목록 보기
4/8

당신이 만든 제작물을 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-pagesupdate하고 싶을 때에는

$ 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

profile
2020년 10월 15일 퇴사하고 개발자의 길에 도전합니다.

0개의 댓글