스테이지에 올렸던 파일을 내리기, 커밋 취소등 각 단계로 돌아가는 방법. 작업 트리에서 수정한 파일 되돌리기 git checkout — 파일이름 vim hello.txt 수정 → 2. git checkout — hello.txt → git checkout — + 수정을취소할 파일 이름. 3. cat hello.txt 를 이용하여 파일내용을 확인 스테이징 되돌리기 git reset HEAD 파일 이름 vim hello2.txt 이후 파일을 수정 → modified위를 보면 restore가 있다. 2. git reset HEAD hello2. txt unstaged가 되었다. 최신 커밋 되돌리기 git reset HEAD^ vim hello2.txt를 수정,, git commit -am “message4” ..