-- 로컬저장소의 Commit 히스토리를 시간순으로 조회

$ git log

 

-- git log 결과값 

commit ca82a6dff817ec66f44342007202690a93763949      -- SHA-1 체크섬값
Author: Scott Chacon <schacon@gee-mail.com>             -- commit한 계정
Date:   Mon Mar 17 21:52:11 2008 -0700                       -- commit 날짜 

    changed the version number                                   -- commit 메세지

 

-- 최근 2개 commit 비교 (diff)

$ git log -p -2 

 

-- log 히스토리 통계 조회 (변경파일개수 등)

$ git log --stat

 

-- oneline은 커밋내용을 한줄로 요약해서 조회 > commit 내역 한꺼번에 볼때 

$ git log --pretty=[oneline | short | full | fuller]

 

 

이밖에도 날짜, 파일, 작성자, 커밋메세지 별로 조회가 가능 > 차근차근 찾아봐야겠당

 

 

 

'프로젝트 관리 툴 > GIT' 카테고리의 다른 글

Git Reset, Revert 차이  (1) 2019.08.19
Git Branch 관리 명령  (0) 2019.08.19
Git Commit 명령  (0) 2019.08.19
github 간단 명령어  (0) 2019.01.10

+ Recent posts