작업하던 브랜치에서 git add .
👉 git commit -m "커밋메시지"
git checkout master
👉 git pull origin master
git checkout branch
👉 git rebase -i master
충돌 해결 (package-lock-json의 경우, 충돌 해결하지 않고 최종 머지할 때 삭제 후 다시 npm install
)
git add .
👉 git rebase --continue
git log
👉 git push origin branch -f