git 특정 커밋 버전으로 되돌리기
- Git log [file_name]
- git checkout [commit-version(2c95ea~)] [file_name]
e.g)
- 특정 시점 파일로 checkout
git checkout a0bfcc8a2d90c872ca62dbb4d33abe83a2777e4d a.sh
- stage에 들어가지 않은 수정한 파일을 수정 이전으로 되돌리기
git checkout -- . git checkout -- a.sh
참고자료
- git 수정 이전으로 내용 되돌리기 : https://www.lesstif.com/gitbook/git-54952660.html
- How can I revert uncommitted changes including files and folders : https://stackoverflow.com/questions/5807137/how-can-i-revert-uncommitted-changes-including-files-and-folders