-
Notifications
You must be signed in to change notification settings - Fork 6
rebase 방법
tjdwns4537 edited this page Feb 5, 2023
·
2 revisions
- PULL REQUSET 가 merge된 것을 확인
- 합칠 브랜치로 checkout ex. git checkout tjdwns4537
- PR 날린 브랜치 삭제 ex. git branch -D feat#2
- upstream remote 등록(첫 등록만 하면됨) : git remote add -t be-dev(본인이 사용할 브랜치) upstream https://github.com/sgdevcamp2022/seagull.git
- git remote -v 로 확인
- git fetch upstream be-dev
- git rebase upstream/be-dev
- 이슈에 대한 작업 브랜치를 새로 파서 진행 ( 1~8 반복 )
- PR merge가 정상적으로 됬음을 가정으로 함
- 항상 개발을 시작하기전 6번 7번을 먼저 진행 후 하면 can't auto merge 에러 발생하지 않음