반응형
git add 취소
- git reset (전체 파일 add 취소)
- git reset HEAD 파일 (특정 파일 add 취소)
git commit 취소
- git reset HEAD^ (가장 최신 커밋 1개 취소(삭제))
- git reset HEAD^^(가장 최신 커밋 2개 취소(삭제))
- 꺽쇠 갯수에 따라 최신 커밋을 필요한만큼 순서대로 삭제할 수 있음
$ git reset HEAD^ 입력 시 오류발생
fatal: ambiguous argument 'HEAD^': unknown revision or path not in the working tree.
반응형
'● IDE, System > Git' 카테고리의 다른 글
[Git 에러] fatal: couldn't find remote ref master 해결 (1) | 2021.02.27 |
---|---|
[Git] error: remote origin already exists. 오류 해결 (0) | 2021.02.27 |
깃허브에 이미지, 링크 넣기 (0) | 2021.02.02 |
[Git] 깃허브 시작하기. 총정리 (init, add, commit, push, pull) (0) | 2021.02.01 |
Updates were rejected because the remote contains work that you do (0) | 2019.07.10 |