git log, cat-file, rebase, reset, reflog
기본 정리* 총 4가지 객체로 구성 commit, tree, blob, taggit log를 통한 커밋 이력 확인* git log --oneline --graph --all-> Mac의 find .git/objects -type f을 통해 git hash(7자리)와 .git/objects 파일 비교 가능 git cat-file을 통한 커밋 정보 확인* git cat-file -p [hash명] : tree, 작성자, 저장 시점, 커밋 메시지 등 확인 가능, hash 내용 출력(commit, tree, blob 등의 hash를 입력해서 각 hash의 타입 확인 가능) * git cat-file -p [태그명] : 태그 정보 확인 * git cat-file -t [hash명] : 타입 출력(commit, t..