Git,  Programming

[Git] show 명령어

Git에서 commit 정보를 탐색하기 위한 show 명령어가 존재한다.

$ git show [branch] [position]
CommandDescription
$ git show branch1branch1에 대해 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 정보 출력

Leave a Reply

Your email address will not be published. Required fields are marked *