명령 줄에서 다음을 확인한 후 :
# On branch RB_3.0.10
# Changed but not updated:
# (use "git add <file>..." to update what will be committed)
# (use "git checkout -- <file>..." to discard changes in working directory)
#
# modified: index.htm
다음 명령을 입력하여 변경 사항을 취소하려고합니다.
git checkout -- index.htm
하지만 git status를 다시 실행하면 똑같이 보입니다. 결제가 작동하지 않는 것 같습니다. 내가 뭘 잘못하고 있니? Windows / cygwin에서 GIT 1.6.1.2를 사용하고 있습니다.
# On branch RB_3.0.10
# Changed but not updated:
# (use "git add <file>..." to update what will be committed)
# (use "git checkout -- <file>..." to discard changes in working directory)
#
# modified: index.htm
git checkout HEAD -- index.htm
나를 위해 일했습니다!
git checkout HEAD -- index.htm
작업 (대신 인덱스에서 체크 아웃에, 마지막으로 커밋 된 상태에서 체크 아웃)?