contacts: reduce git-blame invocations
[git.git] / Documentation / git-show.txt
blob4e617e6979dda86138e14cb93d84016d304de07a
1 git-show(1)
2 ===========
4 NAME
5 ----
6 git-show - Show various types of objects
9 SYNOPSIS
10 --------
11 [verse]
12 'git show' [options] <object>...
14 DESCRIPTION
15 -----------
16 Shows one or more objects (blobs, trees, tags and commits).
18 For commits it shows the log message and textual diff. It also
19 presents the merge commit in a special format as produced by
20 'git diff-tree --cc'.
22 For tags, it shows the tag message and the referenced objects.
24 For trees, it shows the names (equivalent to 'git ls-tree'
25 with \--name-only).
27 For plain blobs, it shows the plain contents.
29 The command takes options applicable to the 'git diff-tree' command to
30 control how the changes the commit introduces are shown.
32 This manual page describes only the most frequently used options.
35 OPTIONS
36 -------
37 <object>...::
38         The names of objects to show.
39         For a more complete list of ways to spell object names, see
40         "SPECIFYING REVISIONS" section in linkgit:gitrevisions[7].
42 include::pretty-options.txt[]
45 include::pretty-formats.txt[]
48 COMMON DIFF OPTIONS
49 -------------------
51 :git-log: 1
52 include::diff-options.txt[]
54 include::diff-generate-patch.txt[]
57 EXAMPLES
58 --------
60 `git show v1.0.0`::
61         Shows the tag `v1.0.0`, along with the object the tags
62         points at.
64 `git show v1.0.0^{tree}`::
65         Shows the tree pointed to by the tag `v1.0.0`.
67 `git show -s --format=%s v1.0.0^{commit}`::
68         Shows the subject of the commit pointed to by the
69         tag `v1.0.0`.
71 `git show next~10:Documentation/README`::
72         Shows the contents of the file `Documentation/README` as
73         they were current in the 10th last commit of the branch
74         `next`.
76 `git show master:Makefile master:t/Makefile`::
77         Concatenates the contents of said Makefiles in the head
78         of the branch `master`.
80 Discussion
81 ----------
83 include::i18n.txt[]
85 GIT
86 ---
87 Part of the linkgit:git[1] suite