직전 3개의 commit을 삭제한 후, remote에 강제로 push
git reset --hard HEAD~3 git push -f origin (branch name)
현재 HEAD를 포함해서 3개의 commit을 순서대로 거슬러 올라가 해당 내역에 대해 commit, push 수행
git revert --no-commit HEAD~3.. git commit git push origin (branch name)