new TIL. git - rebase ver.

유자탱자🍋·2021년 4월 11일
0
  1. 작업하던 브랜치에서 git add . 👉 git commit -m "커밋메시지"

  2. git checkout master 👉 git pull origin master

  3. git checkout branch 👉 git rebase -i master

  4. 충돌 해결 (package-lock-json의 경우, 충돌 해결하지 않고 최종 머지할 때 삭제 후 다시 npm install)

  5. git add . 👉 git rebase --continue

  6. git log 👉 git push origin branch -f

0개의 댓글