]> git.ipfire.org Git - thirdparty/git.git/blame - Documentation/git-show-ref.txt
Merge branch 'mp/rebase-label-length-limit' into maint-2.42
[thirdparty/git.git] / Documentation / git-show-ref.txt
CommitLineData
c0990ff3
JF
1git-show-ref(1)
2===============
3
4NAME
5----
6git-show-ref - List references in a local repository
7
8SYNOPSIS
9--------
10[verse]
e2f4e7e8
ÆAB
11'git show-ref' [-q | --quiet] [--verify] [--head] [-d | --dereference]
12 [-s | --hash[=<n>]] [--abbrev[=<n>]] [--tags]
4318d3ba 13 [--heads] [--] [<pattern>...]
33e8fc87 14'git show-ref' --exclude-existing[=<pattern>]
c0990ff3
JF
15
16DESCRIPTION
17-----------
18
19Displays references available in a local repository along with the associated
20commit IDs. Results can be filtered using a pattern and tags can be
21dereferenced into object IDs. Additionally, it can be used to test whether a
22particular ref exists.
23
3f3d0cea
DB
24By default, shows the tags, heads, and remote refs.
25
00bf6859 26The `--exclude-existing` form is a filter that does the inverse. It reads
33e8fc87
JH
27refs from stdin, one ref per line, and shows those that don't exist in
28the local repository.
8bd26c4a 29
c0990ff3 30Use of this utility is encouraged in favor of directly accessing files under
d4900ee4 31the `.git` directory.
c0990ff3
JF
32
33OPTIONS
34-------
35
3240240f 36--head::
c0990ff3 37
3f3d0cea 38 Show the HEAD reference, even if it would normally be filtered out.
c0990ff3 39
3240240f 40--heads::
bd8d6f0d 41--tags::
c0990ff3 42
3f3d0cea
DB
43 Limit to "refs/heads" and "refs/tags", respectively. These options
44 are not mutually exclusive; when given both, references stored in
45 "refs/heads" and "refs/tags" are displayed.
c0990ff3 46
3240240f
SB
47-d::
48--dereference::
c0990ff3 49
18c4aac0 50 Dereference tags into object IDs as well. They will be shown with `^{}`
c0990ff3
JF
51 appended.
52
3240240f 53-s::
69932bc6 54--hash[=<n>]::
9581e0fc 55
00bf6859
SA
56 Only show the OID, not the reference name. When combined with
57 `--dereference`, the dereferenced tag will still be shown after the OID.
9581e0fc 58
c0990ff3
JF
59--verify::
60
61 Enable stricter reference checking by requiring an exact ref path.
62 Aside from returning an error code of 1, it will also print an error
bcf9626a 63 message if `--quiet` was not specified.
c0990ff3 64
69932bc6 65--abbrev[=<n>]::
2eaf2224
JH
66
67 Abbreviate the object name. When using `--hash`, you do
69932bc6 68 not have to say `--hash --abbrev`; `--hash=n` would do.
2eaf2224 69
3240240f
SB
70-q::
71--quiet::
c0990ff3 72
00bf6859 73 Do not print any results to stdout. When combined with `--verify`, this
c0990ff3
JF
74 can be used to silently check if a reference exists.
75
69932bc6 76--exclude-existing[=<pattern>]::
8bd26c4a 77
00bf6859
SA
78 Make `git show-ref` act as a filter that reads refs from stdin of the
79 form `^(?:<anything>\s)?<refname>(?:\^{})?$`
f1005987 80 and performs the following actions on each:
18c4aac0 81 (1) strip `^{}` at the end of line if any;
8bd26c4a
JP
82 (2) ignore if pattern is provided and does not head-match refname;
83 (3) warn if refname is not a well-formed refname and skip;
84 (4) ignore if refname is a ref that exists in the local repository;
85 (5) otherwise output the line.
86
87
f448e24e 88<pattern>...::
c0990ff3 89
9fbd8986
MG
90 Show references matching one or more patterns. Patterns are matched from
91 the end of the full name, and only complete parts are matched, e.g.
92 'master' matches 'refs/heads/master', 'refs/remotes/origin/master',
a58088ab 93 'refs/tags/jedi/master' but not 'refs/heads/mymaster' or
9fbd8986 94 'refs/remotes/master/jedi'.
c0990ff3
JF
95
96OUTPUT
97------
98
00bf6859
SA
99The output is in the format:
100
101------------
102<oid> SP <ref> LF
103------------
104
105For example,
c0990ff3
JF
106
107-----------------------------------------------------------------------------
108$ git show-ref --head --dereference
109832e76a9899f560a90ffd62ae2ce83bbeff58f54 HEAD
110832e76a9899f560a90ffd62ae2ce83bbeff58f54 refs/heads/master
111832e76a9899f560a90ffd62ae2ce83bbeff58f54 refs/heads/origin
1123521017556c5de4159da4615a39fa4d5d2c279b5 refs/tags/v0.99.9c
1136ddc0964034342519a87fe013781abf31c6db6ad refs/tags/v0.99.9c^{}
114055e4ae3ae6eb344cbabf2a5256a49ea66040131 refs/tags/v1.0rc4
115423325a2d24638ddcc82ce47be5e40be550f4507 refs/tags/v1.0rc4^{}
116...
117-----------------------------------------------------------------------------
118
00bf6859
SA
119When using `--hash` (and not `--dereference`), the output is in the format:
120
121------------
122<oid> LF
123------------
124
125For example,
9581e0fc
CC
126
127-----------------------------------------------------------------------------
128$ git show-ref --heads --hash
1292e3ba0114a1f52b47df29743d6915d056be13278
130185008ae97960c8d551adcd9e23565194651b5d1
13103adf42c988195b50e1a1935ba5fcbc39b2b029b
132...
133-----------------------------------------------------------------------------
134
76a8788c
NTND
135EXAMPLES
136--------
c0990ff3
JF
137
138To show all references called "master", whether tags or heads or anything
139else, and regardless of how deep in the reference naming hierarchy they are,
140use:
141
142-----------------------------------------------------------------------------
143 git show-ref master
144-----------------------------------------------------------------------------
145
146This will show "refs/heads/master" but also "refs/remote/other-repo/master",
147if such references exists.
148
bcf9626a 149When using the `--verify` flag, the command requires an exact path:
c0990ff3
JF
150
151-----------------------------------------------------------------------------
152 git show-ref --verify refs/heads/master
153-----------------------------------------------------------------------------
154
155will only match the exact branch called "master".
156
00bf6859 157If nothing matches, `git show-ref` will return an error code of 1,
c0990ff3
JF
158and in the case of verification, it will show an error message.
159
00bf6859 160For scripting, you can ask it to be quiet with the `--quiet` flag, which
c0990ff3
JF
161allows you to do things like
162
163-----------------------------------------------------------------------------
b1889c36 164 git show-ref --quiet --verify -- "refs/heads/$headname" ||
c0990ff3
JF
165 echo "$headname is not a valid branch"
166-----------------------------------------------------------------------------
167
168to check whether a particular branch exists or not (notice how we don't
169actually want to show any results, and we want to use the full refname for it
170in order to not trigger the problem with ambiguous partial matches).
171
00bf6859 172To show only tags, or only proper branch heads, use `--tags` and/or `--heads`
c0990ff3
JF
173respectively (using both means that it shows tags and heads, but not other
174random references under the refs/ subdirectory).
175
00bf6859 176To do automatic tag object dereferencing, use the `-d` or `--dereference`
c0990ff3
JF
177flag, so you can do
178
179-----------------------------------------------------------------------------
180 git show-ref --tags --dereference
181-----------------------------------------------------------------------------
182
183to get a listing of all tags together with what they dereference.
184
977ed83a
JN
185FILES
186-----
187`.git/refs/*`, `.git/packed-refs`
188
c0990ff3
JF
189SEE ALSO
190--------
f21e1c5d 191linkgit:git-for-each-ref[1],
977ed83a
JN
192linkgit:git-ls-remote[1],
193linkgit:git-update-ref[1],
194linkgit:gitrepository-layout[5]
c0990ff3 195
c0990ff3
JF
196GIT
197---
9e1f0a85 198Part of the linkgit:git[1] suite