< Code diaries />

[ git ] 이슈 해결 본문

카테고리 없음

[ git ] 이슈 해결

ejey 2024. 11. 30. 16:52

 

 

1. 방금 한 커밋 취소(push 이전)

git reset --soft HEAD

 

git log로 커밋이 존재할 때에만 삭제 가능

 

git log
git reset --soft <commit_id>

git log로 커밋아이디를 확인 후, 원하는 것만 삭제 가능 

 

 

2. git 저장소 삭제

rm -rf .git

 

rm : remove
-r : 폴더와 하위 파일까지 삭제

-f : 강제실행

.git : 삭제할 폴더

 

반응형