-
Notifications
You must be signed in to change notification settings - Fork 3
git rebase
weyrm edited this page Jan 18, 2023
·
1 revision
git rebase 마스터하기
📌 브랜치의 모든 작업이 커밋된 이후에 진행해야 한다.
git checkout develop
git pull origin develop
git checkout Feat/~~
git rebase develop
git rebase —continue // 충돌 확인
// current, income, both으로 충돌이 발생한 파일 수정하기
git add . // 해결 시 반영
git push origin -f Feat/~~
git rebase --abort