1git-show(1) 2=========== 3 4NAME 5---- 6git-show - Show one commit with difference it introduces 7 8 9SYNOPSIS 10-------- 11'git-show' <option>... 12 13DESCRIPTION 14----------- 15Shows commit log and textual diff for a single commit. The 16command internally invokes 'git-rev-list' piped to 17'git-diff-tree', and takes command line options for both of 18these commands. It also presents the merge commit in a special 19format as produced by 'git-diff-tree --cc'. 20 21This manual page describes only the most frequently used options. 22 23 24OPTIONS 25------- 26<commitid>:: 27 ID of the commit to show. 28 29--pretty=<format>:: 30 Controls the output format for the commit logs. 31 <format> can be one of 'raw', 'medium', 'short', 'full', 32 and 'oneline'. 33 34Author 35------ 36Written by Linus Torvalds <torvalds@osdl.org> and 37Junio C Hamano <junkio@cox.net> 38 39 40Documentation 41------------- 42Documentation by David Greaves, Petr Baudis and the git-list <git@vger.kernel.org>. 43 44This manual page is a stub. You can help the git documentation by expanding it. 45 46GIT 47--- 48Part of the gitlink:git[7] suite 49