Hanbit the Developer
[Github] branch를 생성하고 작업을 마친 뒤 PR하고 병합하기 본문
git checkout -b ABC
(작업)
git push origin ABC
(Pull Request)
<merge>
git checkout master
git merge ABC
git push
git branch -d ABC
git remote update --prune
<rebase>
git fetch
git rebase master
git checkout master
git merge ABC
git push origin main
git remote update --prune
'Git, Github' 카테고리의 다른 글
[Github] branch 이동 시 기존 작업을 굳이 커밋하지 않고 임시로 저장하기 (0) | 2021.05.12 |
---|---|
Github 파일명 대소문자만 바꿔야할 때 (0) | 2021.04.25 |
Github가 파일명의 대소문자를 구분하지 못하는 문제 (0) | 2021.04.19 |