문제상황: 1)분명히 내부저장소에서 빨간줄 쳐저 있는 파일을 삭제하는 코드를 치고 commit 하고 push를 했는데 삭제되지 않음 2) 심지어 방금 commit을 한 건데도 4hours ago 라고 써있음. 해결방법: 저 파일들을 올렸던 4시간전의 commit이 계속 현재에도 발생하는 것이니, 저 commit을 삭제해주면 됨. 코드 더보기 git reset [--option(hard/soft/mixed)] [commit이름] // 그 commit으로부터 다 취소 git reset [--option(hard/soft/mixed)] head^ //끝의 1개 commit 취소 git reset [--option(hard/soft/mixed)] head^2 // 끝의 2개의 commit 취소 option ha..