blob: 5dbcd47fec3b605d0b4b3e6ed47c06cc57f1dd6d [file] [log] [blame]
Junio C Hamanoa2ec14f2006-11-02 00:22:481git-show-ref(1)
2===============
3
4NAME
5----
6git-show-ref - List references in a local repository
7
8SYNOPSIS
9--------
10[verse]
Junio C Hamano3b70d3c2009-11-21 17:37:3711'git show-ref' [-q|--quiet] [--verify] [--head] [-d|--dereference]
Junio C Hamanoccc4d372009-07-06 18:05:3812 [-s|--hash[=<n>]] [--abbrev[=<n>]] [--tags]
Junio C Hamano1f630d52010-04-01 04:49:2513 [--heads] [--] [<pattern>...]
Junio C Hamanoccc4d372009-07-06 18:05:3814'git show-ref' --exclude-existing[=<pattern>] < ref-list
Junio C Hamanoa2ec14f2006-11-02 00:22:4815
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
Junio C Hamanoc3f1dbf2007-04-10 21:31:3224The --exclude-existing form is a filter that does the inverse, it shows the
25refs from stdin that don't exist in the local repository.
26
Junio C Hamanoa2ec14f2006-11-02 00:22:4827Use of this utility is encouraged in favor of directly accessing files under
Junio C Hamano0e88f3e2009-06-21 08:03:2528the `.git` directory.
Junio C Hamanoa2ec14f2006-11-02 00:22:4829
30OPTIONS
31-------
32
Junio C Hamanoeb415992008-06-08 22:49:4733--head::
Junio C Hamanoa2ec14f2006-11-02 00:22:4834
35Show the HEAD reference.
36
Junio C Hamanoeb415992008-06-08 22:49:4737--tags::
38--heads::
Junio C Hamanoa2ec14f2006-11-02 00:22:4839
40Limit to only "refs/heads" and "refs/tags", respectively. These
41options are not mutually exclusive; when given both, references stored
42in "refs/heads" and "refs/tags" are displayed.
43
Junio C Hamanoeb415992008-06-08 22:49:4744-d::
45--dereference::
Junio C Hamanoa2ec14f2006-11-02 00:22:4846
Junio C Hamanobfeab4e2012-01-19 00:51:2747Dereference tags into object IDs as well. They will be shown with "{caret}{}"
Junio C Hamanoa2ec14f2006-11-02 00:22:4848appended.
49
Junio C Hamanoeb415992008-06-08 22:49:4750-s::
Junio C Hamanoccc4d372009-07-06 18:05:3851--hash[=<n>]::
Junio C Hamanoa2ec14f2006-11-02 00:22:4852
Junio C Hamano0e88f3e2009-06-21 08:03:2553Only show the SHA1 hash, not the reference name. When combined with
Junio C Hamanoa2ec14f2006-11-02 00:22:4854--dereference the dereferenced tag will still be shown after the SHA1.
55
56--verify::
57
58Enable stricter reference checking by requiring an exact ref path.
59Aside from returning an error code of 1, it will also print an error
60message if '--quiet' was not specified.
61
Junio C Hamanoccc4d372009-07-06 18:05:3862--abbrev[=<n>]::
Junio C Hamanoa2ec14f2006-11-02 00:22:4863
64Abbreviate the object name. When using `--hash`, you do
Junio C Hamanoccc4d372009-07-06 18:05:3865not have to say `--hash --abbrev`; `--hash=n` would do.
Junio C Hamanoa2ec14f2006-11-02 00:22:4866
Junio C Hamanoeb415992008-06-08 22:49:4767-q::
68--quiet::
Junio C Hamanoa2ec14f2006-11-02 00:22:4869
70Do not print any results to stdout. When combined with '--verify' this
71can be used to silently check if a reference exists.
72
Junio C Hamanoccc4d372009-07-06 18:05:3873--exclude-existing[=<pattern>]::
Junio C Hamanoc3f1dbf2007-04-10 21:31:3274
Junio C Hamano1aa40d22010-01-21 17:46:4375Make 'git show-ref' act as a filter that reads refs from stdin of the
Junio C Hamanob76a6862012-05-02 22:02:4676form "`^(?:<anything>\s)?<refname>(?:\^{})?$`"
Junio C Hamano2db3e752010-09-03 21:33:0677and performs the following actions on each:
Junio C Hamanobfeab4e2012-01-19 00:51:2778(1) strip "{caret}{}" at the end of line if any;
Junio C Hamanoc3f1dbf2007-04-10 21:31:3279(2) ignore if pattern is provided and does not head-match refname;
80(3) warn if refname is not a well-formed refname and skip;
81(4) ignore if refname is a ref that exists in the local repository;
82(5) otherwise output the line.
83
84
Junio C Hamano9e395072008-07-31 22:11:2185<pattern>...::
Junio C Hamanoa2ec14f2006-11-02 00:22:4886
Junio C Hamano7f9fa862010-10-19 23:51:1487Show references matching one or more patterns. Patterns are matched from
88the end of the full name, and only complete parts are matched, e.g.
89'master' matches 'refs/heads/master', 'refs/remotes/origin/master',
90'refs/tags/jedi/master' but not 'refs/heads/mymaster' nor
91'refs/remotes/master/jedi'.
Junio C Hamanoa2ec14f2006-11-02 00:22:4892
93OUTPUT
94------
95
96The output is in the format: '<SHA-1 ID>' '<space>' '<reference name>'.
97
98-----------------------------------------------------------------------------
99$ git show-ref --head --dereference
100832e76a9899f560a90ffd62ae2ce83bbeff58f54 HEAD
101832e76a9899f560a90ffd62ae2ce83bbeff58f54 refs/heads/master
102832e76a9899f560a90ffd62ae2ce83bbeff58f54 refs/heads/origin
1033521017556c5de4159da4615a39fa4d5d2c279b5 refs/tags/v0.99.9c
1046ddc0964034342519a87fe013781abf31c6db6ad refs/tags/v0.99.9c^{}
105055e4ae3ae6eb344cbabf2a5256a49ea66040131 refs/tags/v1.0rc4
106423325a2d24638ddcc82ce47be5e40be550f4507 refs/tags/v1.0rc4^{}
107...
108-----------------------------------------------------------------------------
109
110When using --hash (and not --dereference) the output format is: '<SHA-1 ID>'
111
112-----------------------------------------------------------------------------
113$ git show-ref --heads --hash
1142e3ba0114a1f52b47df29743d6915d056be13278
115185008ae97960c8d551adcd9e23565194651b5d1
11603adf42c988195b50e1a1935ba5fcbc39b2b029b
117...
118-----------------------------------------------------------------------------
119
120EXAMPLE
121-------
122
123To show all references called "master", whether tags or heads or anything
124else, and regardless of how deep in the reference naming hierarchy they are,
125use:
126
127-----------------------------------------------------------------------------
128git show-ref master
129-----------------------------------------------------------------------------
130
131This will show "refs/heads/master" but also "refs/remote/other-repo/master",
132if such references exists.
133
134When using the '--verify' flag, the command requires an exact path:
135
136-----------------------------------------------------------------------------
137git show-ref --verify refs/heads/master
138-----------------------------------------------------------------------------
139
140will only match the exact branch called "master".
141
Junio C Hamano1aa40d22010-01-21 17:46:43142If nothing matches, 'git show-ref' will return an error code of 1,
Junio C Hamanoa2ec14f2006-11-02 00:22:48143and in the case of verification, it will show an error message.
144
145For scripting, you can ask it to be quiet with the "--quiet" flag, which
146allows you to do things like
147
148-----------------------------------------------------------------------------
Junio C Hamanofce7c7e2008-07-02 03:06:38149git show-ref --quiet --verify -- "refs/heads/$headname" ||
Junio C Hamanoa2ec14f2006-11-02 00:22:48150echo "$headname is not a valid branch"
151-----------------------------------------------------------------------------
152
153to check whether a particular branch exists or not (notice how we don't
154actually want to show any results, and we want to use the full refname for it
155in order to not trigger the problem with ambiguous partial matches).
156
157To show only tags, or only proper branch heads, use "--tags" and/or "--heads"
158respectively (using both means that it shows tags and heads, but not other
159random references under the refs/ subdirectory).
160
161To do automatic tag object dereferencing, use the "-d" or "--dereference"
162flag, so you can do
163
164-----------------------------------------------------------------------------
165git show-ref --tags --dereference
166-----------------------------------------------------------------------------
167
168to get a listing of all tags together with what they dereference.
169
Junio C Hamanoe85e36f2010-08-10 05:30:14170FILES
171-----
172`.git/refs/*`, `.git/packed-refs`
173
Junio C Hamanoa2ec14f2006-11-02 00:22:48174SEE ALSO
175--------
Junio C Hamanoe85e36f2010-08-10 05:30:14176linkgit:git-ls-remote[1],
177linkgit:git-update-ref[1],
178linkgit:gitrepository-layout[5]
Junio C Hamanoa2ec14f2006-11-02 00:22:48179
Junio C Hamanoa2ec14f2006-11-02 00:22:48180GIT
181---
Junio C Hamanof7c042d2008-06-06 22:50:53182Part of the linkgit:git[1] suite