t/t1411: test reflog with formats
[git/dscho.git] / Documentation / git-show.txt
blobf0a8a1aff3694cf00587d8670a8fe9962fe98af3
1 git-show(1)
2 ===========
4 NAME
5 ----
6 git-show - Show various types of objects
9 SYNOPSIS
10 --------
11 'git show' [options] <object>...
13 DESCRIPTION
14 -----------
15 Shows one or more objects (blobs, trees, tags and commits).
17 For commits it shows the log message and textual diff. It also
18 presents the merge commit in a special format as produced by
19 'git diff-tree --cc'.
21 For tags, it shows the tag message and the referenced objects.
23 For trees, it shows the names (equivalent to 'git ls-tree'
24 with \--name-only).
26 For plain blobs, it shows the plain contents.
28 The command takes options applicable to the 'git diff-tree' command to
29 control how the changes the commit introduces are shown.
31 This manual page describes only the most frequently used options.
34 OPTIONS
35 -------
36 <object>...::
37         The names of objects to show.
38         For a more complete list of ways to spell object names, see
39         "SPECIFYING REVISIONS" section in linkgit:gitrevisions[7].
41 include::pretty-options.txt[]
44 include::pretty-formats.txt[]
47 EXAMPLES
48 --------
50 git show v1.0.0::
51         Shows the tag `v1.0.0`, along with the object the tags
52         points at.
54 git show v1.0.0^\{tree\}::
55         Shows the tree pointed to by the tag `v1.0.0`.
57 git show -s --format=%s v1.0.0^\{commit\}::
58         Shows the subject of the commit pointed to by the
59         tag `v1.0.0`.
61 git show next~10:Documentation/README::
62         Shows the contents of the file `Documentation/README` as
63         they were current in the 10th last commit of the branch
64         `next`.
66 git show master:Makefile master:t/Makefile::
67         Concatenates the contents of said Makefiles in the head
68         of the branch `master`.
70 Discussion
71 ----------
73 include::i18n.txt[]
75 Author
76 ------
77 Written by Linus Torvalds <torvalds@osdl.org> and
78 Junio C Hamano <gitster@pobox.com>.  Significantly enhanced by
79 Johannes Schindelin <Johannes.Schindelin@gmx.de>.
82 Documentation
83 -------------
84 Documentation by David Greaves, Petr Baudis and the git-list <git@vger.kernel.org>.
86 GIT
87 ---
88 Part of the linkgit:git[1] suite