git commit 변경 사항 취소

1103 단어 git

commit 취소

  • commit 제출을 취소하고 작업 영역 코드를 취소
  • commit 제출만 취소
  • 1

    #   commit,  git add ,       
    git reset --hard HEAD^
    

    2

    #       commit,     git add
    git reset HEAD^
    #      ,     git add
    git reset --mixed HEAD^
    #   commit,    git add
    git reset --soft HEAD^
    

    그중의 HEAD^는 모두 id로 바꿀 수 있으며, id는 아래 명령을 통해 볼 수 있다
    git log
      
    git reflog
    

    주:commit을 취소하는 것은 설명 정보를 수정하기 위해서일 경우 다음 명령을 사용하여 설명 정보를 직접 변경할 수 있습니다.
    git commit -amend
    

    좋은 웹페이지 즐겨찾기