git push 취소방법

javascript·2022년 5월 16일
0
  • push를 되돌리기 위한 방법
    • reset: 되돌리고 싶은 시점의 commit이력으로 돌아가는 것
    • revert: 현재까지 남긴 이력들을 유지한 채 되돌리고 싶은 commit을 원상복귀시키는 것
  1. commit 이력 조회하기

    git log --oneline

  2. 돌아가고 싶은 commit 이후의 commit 삭제하기

    git reset --hard "해당commit"

  3. github 원래대로 돌려놓기

    git push -f origin master

profile
JavaScript learner

0개의 댓글