completion: add a test for __git_remotes() helper function
[git.git] / Documentation / git-show-ref.txt
blob2a6f89b235f10ea6d41047a2a42a133531ea3cab
1 git-show-ref(1)
2 ===============
4 NAME
5 ----
6 git-show-ref - List references in a local repository
8 SYNOPSIS
9 --------
10 [verse]
11 'git show-ref' [-q|--quiet] [--verify] [--head] [-d|--dereference]
12              [-s|--hash[=<n>]] [--abbrev[=<n>]] [--tags]
13              [--heads] [--] [<pattern>...]
14 'git show-ref' --exclude-existing[=<pattern>] < ref-list
16 DESCRIPTION
17 -----------
19 Displays references available in a local repository along with the associated
20 commit IDs. Results can be filtered using a pattern and tags can be
21 dereferenced into object IDs. Additionally, it can be used to test whether a
22 particular ref exists.
24 By default, shows the tags, heads, and remote refs.
26 The --exclude-existing form is a filter that does the inverse, it shows the
27 refs from stdin that don't exist in the local repository.
29 Use of this utility is encouraged in favor of directly accessing files under
30 the `.git` directory.
32 OPTIONS
33 -------
35 --head::
37         Show the HEAD reference, even if it would normally be filtered out.
39 --tags::
40 --heads::
42         Limit to "refs/heads" and "refs/tags", respectively.  These options
43         are not mutually exclusive; when given both, references stored in
44         "refs/heads" and "refs/tags" are displayed.
46 -d::
47 --dereference::
49         Dereference tags into object IDs as well. They will be shown with "{caret}{}"
50         appended.
52 -s::
53 --hash[=<n>]::
55         Only show the SHA-1 hash, not the reference name. When combined with
56         --dereference the dereferenced tag will still be shown after the SHA-1.
58 --verify::
60         Enable stricter reference checking by requiring an exact ref path.
61         Aside from returning an error code of 1, it will also print an error
62         message if '--quiet' was not specified.
64 --abbrev[=<n>]::
66         Abbreviate the object name.  When using `--hash`, you do
67         not have to say `--hash --abbrev`; `--hash=n` would do.
69 -q::
70 --quiet::
72         Do not print any results to stdout. When combined with '--verify' this
73         can be used to silently check if a reference exists.
75 --exclude-existing[=<pattern>]::
77         Make 'git show-ref' act as a filter that reads refs from stdin of the
78         form "`^(?:<anything>\s)?<refname>(?:\^{})?$`"
79         and performs the following actions on each:
80         (1) strip "{caret}{}" at the end of line if any;
81         (2) ignore if pattern is provided and does not head-match refname;
82         (3) warn if refname is not a well-formed refname and skip;
83         (4) ignore if refname is a ref that exists in the local repository;
84         (5) otherwise output the line.
87 <pattern>...::
89         Show references matching one or more patterns. Patterns are matched from
90         the end of the full name, and only complete parts are matched, e.g.
91         'master' matches 'refs/heads/master', 'refs/remotes/origin/master',
92         'refs/tags/jedi/master' but not 'refs/heads/mymaster' or
93         'refs/remotes/master/jedi'.
95 OUTPUT
96 ------
98 The output is in the format: '<SHA-1 ID>' '<space>' '<reference name>'.
100 -----------------------------------------------------------------------------
101 $ git show-ref --head --dereference
102 832e76a9899f560a90ffd62ae2ce83bbeff58f54 HEAD
103 832e76a9899f560a90ffd62ae2ce83bbeff58f54 refs/heads/master
104 832e76a9899f560a90ffd62ae2ce83bbeff58f54 refs/heads/origin
105 3521017556c5de4159da4615a39fa4d5d2c279b5 refs/tags/v0.99.9c
106 6ddc0964034342519a87fe013781abf31c6db6ad refs/tags/v0.99.9c^{}
107 055e4ae3ae6eb344cbabf2a5256a49ea66040131 refs/tags/v1.0rc4
108 423325a2d24638ddcc82ce47be5e40be550f4507 refs/tags/v1.0rc4^{}
110 -----------------------------------------------------------------------------
112 When using --hash (and not --dereference) the output format is: '<SHA-1 ID>'
114 -----------------------------------------------------------------------------
115 $ git show-ref --heads --hash
116 2e3ba0114a1f52b47df29743d6915d056be13278
117 185008ae97960c8d551adcd9e23565194651b5d1
118 03adf42c988195b50e1a1935ba5fcbc39b2b029b
120 -----------------------------------------------------------------------------
122 EXAMPLE
123 -------
125 To show all references called "master", whether tags or heads or anything
126 else, and regardless of how deep in the reference naming hierarchy they are,
127 use:
129 -----------------------------------------------------------------------------
130         git show-ref master
131 -----------------------------------------------------------------------------
133 This will show "refs/heads/master" but also "refs/remote/other-repo/master",
134 if such references exists.
136 When using the '--verify' flag, the command requires an exact path:
138 -----------------------------------------------------------------------------
139         git show-ref --verify refs/heads/master
140 -----------------------------------------------------------------------------
142 will only match the exact branch called "master".
144 If nothing matches, 'git show-ref' will return an error code of 1,
145 and in the case of verification, it will show an error message.
147 For scripting, you can ask it to be quiet with the "--quiet" flag, which
148 allows you to do things like
150 -----------------------------------------------------------------------------
151         git show-ref --quiet --verify -- "refs/heads/$headname" ||
152                 echo "$headname is not a valid branch"
153 -----------------------------------------------------------------------------
155 to check whether a particular branch exists or not (notice how we don't
156 actually want to show any results, and we want to use the full refname for it
157 in order to not trigger the problem with ambiguous partial matches).
159 To show only tags, or only proper branch heads, use "--tags" and/or "--heads"
160 respectively (using both means that it shows tags and heads, but not other
161 random references under the refs/ subdirectory).
163 To do automatic tag object dereferencing, use the "-d" or "--dereference"
164 flag, so you can do
166 -----------------------------------------------------------------------------
167         git show-ref --tags --dereference
168 -----------------------------------------------------------------------------
170 to get a listing of all tags together with what they dereference.
172 FILES
173 -----
174 `.git/refs/*`, `.git/packed-refs`
176 SEE ALSO
177 --------
178 linkgit:git-for-each-ref[1],
179 linkgit:git-ls-remote[1],
180 linkgit:git-update-ref[1],
181 linkgit:gitrepository-layout[5]
185 Part of the linkgit:git[1] suite