2006-02-07 12:47:47 +01:00
|
|
|
git-show(1)
|
|
|
|
===========
|
|
|
|
|
|
|
|
NAME
|
|
|
|
----
|
2006-12-14 11:31:05 +01:00
|
|
|
git-show - Show various types of objects
|
2006-02-07 12:47:47 +01:00
|
|
|
|
|
|
|
|
|
|
|
SYNOPSIS
|
|
|
|
--------
|
2008-06-30 08:09:04 +02:00
|
|
|
'git show' [options] <object>...
|
2006-02-07 12:47:47 +01:00
|
|
|
|
|
|
|
DESCRIPTION
|
|
|
|
-----------
|
2006-12-14 11:31:05 +01:00
|
|
|
Shows one or more objects (blobs, trees, tags and commits).
|
|
|
|
|
|
|
|
For commits it shows the log message and textual diff. It also
|
|
|
|
presents the merge commit in a special format as produced by
|
2008-07-03 07:41:41 +02:00
|
|
|
'git-diff-tree --cc'.
|
2006-12-14 11:31:05 +01:00
|
|
|
|
|
|
|
For tags, it shows the tag message and the referenced objects.
|
|
|
|
|
2008-07-03 07:41:41 +02:00
|
|
|
For trees, it shows the names (equivalent to 'git-ls-tree'
|
2006-12-14 11:31:05 +01:00
|
|
|
with \--name-only).
|
|
|
|
|
|
|
|
For plain blobs, it shows the plain contents.
|
2006-02-07 12:47:47 +01:00
|
|
|
|
2008-07-03 07:41:41 +02:00
|
|
|
The command takes options applicable to the 'git-diff-tree' command to
|
2007-02-09 00:22:21 +01:00
|
|
|
control how the changes the commit introduces are shown.
|
|
|
|
|
2006-02-07 12:47:47 +01:00
|
|
|
This manual page describes only the most frequently used options.
|
|
|
|
|
|
|
|
|
|
|
|
OPTIONS
|
|
|
|
-------
|
2008-07-30 11:33:43 +02:00
|
|
|
<object>...::
|
|
|
|
The names of objects to show.
|
2007-01-18 03:08:09 +01:00
|
|
|
For a more complete list of ways to spell object names, see
|
2007-12-29 07:20:38 +01:00
|
|
|
"SPECIFYING REVISIONS" section in linkgit:git-rev-parse[1].
|
2006-02-07 12:47:47 +01:00
|
|
|
|
2007-05-14 01:25:45 +02:00
|
|
|
include::pretty-options.txt[]
|
|
|
|
|
|
|
|
|
2006-11-22 00:49:15 +01:00
|
|
|
include::pretty-formats.txt[]
|
2006-02-07 12:47:47 +01:00
|
|
|
|
2006-12-14 11:31:05 +01:00
|
|
|
|
|
|
|
EXAMPLES
|
|
|
|
--------
|
|
|
|
|
|
|
|
git show v1.0.0::
|
2006-12-30 11:21:48 +01:00
|
|
|
Shows the tag `v1.0.0`, along with the object the tags
|
|
|
|
points at.
|
2006-12-14 11:31:05 +01:00
|
|
|
|
2007-02-27 16:43:28 +01:00
|
|
|
git show v1.0.0^\{tree\}::
|
2006-12-14 11:31:05 +01:00
|
|
|
Shows the tree pointed to by the tag `v1.0.0`.
|
|
|
|
|
2007-02-27 16:43:28 +01:00
|
|
|
git show next~10:Documentation/README::
|
2006-12-14 11:31:05 +01:00
|
|
|
Shows the contents of the file `Documentation/README` as
|
|
|
|
they were current in the 10th last commit of the branch
|
|
|
|
`next`.
|
|
|
|
|
2007-02-27 16:43:28 +01:00
|
|
|
git show master:Makefile master:t/Makefile::
|
2006-12-14 11:31:05 +01:00
|
|
|
Concatenates the contents of said Makefiles in the head
|
|
|
|
of the branch `master`.
|
|
|
|
|
2006-12-30 11:22:38 +01:00
|
|
|
Discussion
|
|
|
|
----------
|
|
|
|
|
|
|
|
include::i18n.txt[]
|
|
|
|
|
2006-02-07 12:47:47 +01:00
|
|
|
Author
|
|
|
|
------
|
|
|
|
Written by Linus Torvalds <torvalds@osdl.org> and
|
2008-07-21 21:14:42 +02:00
|
|
|
Junio C Hamano <gitster@pobox.com>. Significantly enhanced by
|
2006-12-30 11:21:48 +01:00
|
|
|
Johannes Schindelin <Johannes.Schindelin@gmx.de>.
|
2006-02-07 12:47:47 +01:00
|
|
|
|
|
|
|
|
|
|
|
Documentation
|
|
|
|
-------------
|
|
|
|
Documentation by David Greaves, Petr Baudis and the git-list <git@vger.kernel.org>.
|
|
|
|
|
|
|
|
GIT
|
|
|
|
---
|
2008-06-06 09:07:32 +02:00
|
|
|
Part of the linkgit:git[1] suite
|