잘 안쓰다보면 또 까먹게되는 git 명령어 모음
1. git add 취소
git status # 파일 상태 확인
git reset HEAD [file] # 해당 파일 add 취소 (파일명이 없으면 전체 파일 취소)
2. git commit 취소
git log # commit 목록 확인
git reset HEAD^ # 직전 commit 취소
git reset HEAD~2 # 마지막 2개 commit 취소
3. git commit 메시지 변경
git commit --amend
4. git push 취소
git reset HEAD^ # commit 되돌리기
git push -f origin master # 강제 푸쉬
5. 강제로 워킹 디렉토리(로컬)를 원격 디렉토리와 동일하게 만들기 → 워킹 디렉토리에서 작업한 내용 날아감!!!
git reset --hard HEAD # 원격 디렉토리의 최근 commit으로 강제 되돌리기
'개발 > 기타' 카테고리의 다른 글
스쿱 에러 ( java.math.BigInteger cannot be cast to java.lang.Long) (0) | 2021.02.24 |
---|---|
젠킨스 빌드 위치 확인 방법 (0) | 2020.09.28 |
bash 특수문자 처리 (0) | 2020.09.28 |
주관 100% 내 맘대로 모은 색상표 (0) | 2020.09.18 |