-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Petr Baudis <pasky@suse.cz> Signed-off-by: Junio C Hamano <junkio@cox.net>
- Loading branch information
Petr Baudis
authored and
Junio C Hamano
committed
Feb 7, 2006
1 parent
3904848
commit 4e783b4
Showing
1 changed file
with
49 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
git-show(1) | ||
=========== | ||
|
||
NAME | ||
---- | ||
git-show - Show one commit with difference it introduces. | ||
|
||
|
||
SYNOPSIS | ||
-------- | ||
'git-show' <option>... | ||
|
||
DESCRIPTION | ||
----------- | ||
Shows commit log and textual diff for a single commit. The | ||
command internally invokes 'git-rev-list' piped to | ||
'git-diff-tree', and takes command line options for both of | ||
these commands. It also presents the merge commit in a special | ||
format as produced by 'git-diff-tree --cc'. | ||
|
||
This manual page describes only the most frequently used options. | ||
|
||
|
||
OPTIONS | ||
------- | ||
<commitid>:: | ||
ID of the commit to show. | ||
|
||
--pretty=<format>:: | ||
Controls the output format for the commit logs. | ||
<format> can be one of 'raw', 'medium', 'short', 'full', | ||
and 'oneline'. | ||
|
||
Author | ||
------ | ||
Written by Linus Torvalds <torvalds@osdl.org> and | ||
Junio C Hamano <junkio@cox.net> | ||
|
||
|
||
Documentation | ||
------------- | ||
Documentation by David Greaves, Petr Baudis and the git-list <git@vger.kernel.org>. | ||
|
||
This manual page is a stub. You can help the git documentation by expanding it. | ||
|
||
GIT | ||
--- | ||
Part of the gitlink:git[7] suite | ||
|