Git
[GIT] git branch merge하기
hanseongjun
2022. 9. 2. 02:13
참고한 블로그
Git Branch Merge하기
- 현재 branch commit 후 push 하기
- git checkout master/main
- git merge <merge할 branch 이름>
- git push -u origin master/main
- git checkout <원래 branch 이름> (다시 원래 branch로 돌아가고자 할 때)
* master/main 중 하나의 이름만 사용해야 함.
LIST