Git add, commit, push 취소하기 git add 취소하기 실수로 git add * 명령을 사용하여 모든 파일을 스토리지 영역에 넣은 경우 취소하고 싶은 상황이 발생함 명령어 git reset HEAD 해당 파일만 git add 를 취소 git reset HEAD 파일 전체를 add 취소 git commit 취소하기 너무 일찍 commit 한 경우 어떤 파일을 빼먹고 commit 한 경우 취소하고 싶은 상황이 발생 명령어 1) git reset --soft HEAD^ commit을 취소하고 해당 파일들은 staged 상태로 워킹 디렉터리에 보존 즉 add 한 상태 staged 상태 2) git reset ---mixed HEAD^ commit 을 취소하고 해당 파일들 unstaged 상태로 ..