[Git] show 명령어
Git에서 commit 정보를 탐색하기 위한 show
명령어가 존재한다.
$ git show [branch] [position]
Command | Description |
---|---|
$ git show branch1 | branch1에 대해 latest commit에 대한 log와 diff를 나타냄 |
$ git show HEAD | 현재 branch에 대해 HEAD가 가리키는 commit 정보 |
$ git show HEAD^^ | 현재 branch에 대해 HEAD의 2단계 이전 commit 정보 |
$ git show HEAD~2 | $ git show HEAD^^와 동일 |
$ git show [hash number] | 특정 hash number에 대해 commit 정보 출력 |