Git

[GIT] git branch merge하기

hanseongjun 2022. 9. 2. 02:13

참고한 블로그

Git Branch Merge하기

  1. 현재 branch commit 후 push 하기
  2. git checkout master/main
  3. git merge <merge할 branch 이름>
  4. git push -u origin master/main
  5. git checkout <원래 branch 이름> (다시 원래 branch로 돌아가고자 할 때)

* master/main 중 하나의 이름만 사용해야 함.

LIST