Junio C Hamano | a2ec14f | 2006-11-02 00:22:48 | [diff] [blame] | 1 | git-show-ref(1) |
| 2 | =============== |
| 3 | |
| 4 | NAME |
| 5 | ---- |
| 6 | git-show-ref - List references in a local repository |
| 7 | |
| 8 | SYNOPSIS |
| 9 | -------- |
| 10 | [verse] |
Junio C Hamano | cf9c773 | 2022-10-28 18:56:06 | [diff] [blame] | 11 | 'git show-ref' [-q | --quiet] [--verify] [--head] [-d | --dereference] |
| 12 | [-s | --hash[=<n>]] [--abbrev[=<n>]] [--tags] |
Junio C Hamano | 1f630d5 | 2010-04-01 04:49:25 | [diff] [blame] | 13 | [--heads] [--] [<pattern>...] |
Junio C Hamano | daf0aae | 2015-10-26 23:14:30 | [diff] [blame] | 14 | 'git show-ref' --exclude-existing[=<pattern>] |
Junio C Hamano | a2ec14f | 2006-11-02 00:22:48 | [diff] [blame] | 15 | |
| 16 | DESCRIPTION |
| 17 | ----------- |
| 18 | |
| 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. |
| 23 | |
Junio C Hamano | 58f587a | 2013-07-22 19:20:59 | [diff] [blame] | 24 | By default, shows the tags, heads, and remote refs. |
| 25 | |
Junio C Hamano | daf0aae | 2015-10-26 23:14:30 | [diff] [blame] | 26 | The --exclude-existing form is a filter that does the inverse. It reads |
| 27 | refs from stdin, one ref per line, and shows those that don't exist in |
| 28 | the local repository. |
Junio C Hamano | c3f1dbf | 2007-04-10 21:31:32 | [diff] [blame] | 29 | |
Junio C Hamano | a2ec14f | 2006-11-02 00:22:48 | [diff] [blame] | 30 | Use of this utility is encouraged in favor of directly accessing files under |
Junio C Hamano | 0e88f3e | 2009-06-21 08:03:25 | [diff] [blame] | 31 | the `.git` directory. |
Junio C Hamano | a2ec14f | 2006-11-02 00:22:48 | [diff] [blame] | 32 | |
| 33 | OPTIONS |
| 34 | ------- |
| 35 | |
Junio C Hamano | eb41599 | 2008-06-08 22:49:47 | [diff] [blame] | 36 | --head:: |
Junio C Hamano | a2ec14f | 2006-11-02 00:22:48 | [diff] [blame] | 37 | |
Junio C Hamano | 58f587a | 2013-07-22 19:20:59 | [diff] [blame] | 38 | Show the HEAD reference, even if it would normally be filtered out. |
Junio C Hamano | a2ec14f | 2006-11-02 00:22:48 | [diff] [blame] | 39 | |
Junio C Hamano | eb41599 | 2008-06-08 22:49:47 | [diff] [blame] | 40 | --heads:: |
Junio C Hamano | ace33e4 | 2019-01-18 23:16:05 | [diff] [blame] | 41 | --tags:: |
Junio C Hamano | a2ec14f | 2006-11-02 00:22:48 | [diff] [blame] | 42 | |
Junio C Hamano | 58f587a | 2013-07-22 19:20:59 | [diff] [blame] | 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. |
Junio C Hamano | a2ec14f | 2006-11-02 00:22:48 | [diff] [blame] | 46 | |
Junio C Hamano | eb41599 | 2008-06-08 22:49:47 | [diff] [blame] | 47 | -d:: |
| 48 | --dereference:: |
Junio C Hamano | a2ec14f | 2006-11-02 00:22:48 | [diff] [blame] | 49 | |
Junio C Hamano | bfeab4e | 2012-01-19 00:51:27 | [diff] [blame] | 50 | Dereference tags into object IDs as well. They will be shown with "{caret}{}" |
Junio C Hamano | a2ec14f | 2006-11-02 00:22:48 | [diff] [blame] | 51 | appended. |
| 52 | |
Junio C Hamano | eb41599 | 2008-06-08 22:49:47 | [diff] [blame] | 53 | -s:: |
Junio C Hamano | ccc4d37 | 2009-07-06 18:05:38 | [diff] [blame] | 54 | --hash[=<n>]:: |
Junio C Hamano | a2ec14f | 2006-11-02 00:22:48 | [diff] [blame] | 55 | |
Junio C Hamano | e3f080d | 2013-04-22 02:27:13 | [diff] [blame] | 56 | Only show the SHA-1 hash, not the reference name. When combined with |
| 57 | --dereference the dereferenced tag will still be shown after the SHA-1. |
Junio C Hamano | a2ec14f | 2006-11-02 00:22:48 | [diff] [blame] | 58 | |
| 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 |
Junio C Hamano | 92d8037 | 2016-07-13 22:00:05 | [diff] [blame] | 63 | message if `--quiet` was not specified. |
Junio C Hamano | a2ec14f | 2006-11-02 00:22:48 | [diff] [blame] | 64 | |
Junio C Hamano | ccc4d37 | 2009-07-06 18:05:38 | [diff] [blame] | 65 | --abbrev[=<n>]:: |
Junio C Hamano | a2ec14f | 2006-11-02 00:22:48 | [diff] [blame] | 66 | |
| 67 | Abbreviate the object name. When using `--hash`, you do |
Junio C Hamano | ccc4d37 | 2009-07-06 18:05:38 | [diff] [blame] | 68 | not have to say `--hash --abbrev`; `--hash=n` would do. |
Junio C Hamano | a2ec14f | 2006-11-02 00:22:48 | [diff] [blame] | 69 | |
Junio C Hamano | eb41599 | 2008-06-08 22:49:47 | [diff] [blame] | 70 | -q:: |
| 71 | --quiet:: |
Junio C Hamano | a2ec14f | 2006-11-02 00:22:48 | [diff] [blame] | 72 | |
Junio C Hamano | 92d8037 | 2016-07-13 22:00:05 | [diff] [blame] | 73 | Do not print any results to stdout. When combined with `--verify` this |
Junio C Hamano | a2ec14f | 2006-11-02 00:22:48 | [diff] [blame] | 74 | can be used to silently check if a reference exists. |
| 75 | |
Junio C Hamano | ccc4d37 | 2009-07-06 18:05:38 | [diff] [blame] | 76 | --exclude-existing[=<pattern>]:: |
Junio C Hamano | c3f1dbf | 2007-04-10 21:31:32 | [diff] [blame] | 77 | |
Junio C Hamano | 1aa40d2 | 2010-01-21 17:46:43 | [diff] [blame] | 78 | Make 'git show-ref' act as a filter that reads refs from stdin of the |
Junio C Hamano | b76a686 | 2012-05-02 22:02:46 | [diff] [blame] | 79 | form "`^(?:<anything>\s)?<refname>(?:\^{})?$`" |
Junio C Hamano | 2db3e75 | 2010-09-03 21:33:06 | [diff] [blame] | 80 | and performs the following actions on each: |
Junio C Hamano | bfeab4e | 2012-01-19 00:51:27 | [diff] [blame] | 81 | (1) strip "{caret}{}" at the end of line if any; |
Junio C Hamano | c3f1dbf | 2007-04-10 21:31:32 | [diff] [blame] | 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 | |
Junio C Hamano | 9e39507 | 2008-07-31 22:11:21 | [diff] [blame] | 88 | <pattern>...:: |
Junio C Hamano | a2ec14f | 2006-11-02 00:22:48 | [diff] [blame] | 89 | |
Junio C Hamano | 7f9fa86 | 2010-10-19 23:51:14 | [diff] [blame] | 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', |
Junio C Hamano | d75148a | 2014-04-08 19:48:38 | [diff] [blame] | 93 | 'refs/tags/jedi/master' but not 'refs/heads/mymaster' or |
Junio C Hamano | 7f9fa86 | 2010-10-19 23:51:14 | [diff] [blame] | 94 | 'refs/remotes/master/jedi'. |
Junio C Hamano | a2ec14f | 2006-11-02 00:22:48 | [diff] [blame] | 95 | |
| 96 | OUTPUT |
| 97 | ------ |
| 98 | |
| 99 | The output is in the format: '<SHA-1 ID>' '<space>' '<reference name>'. |
| 100 | |
| 101 | ----------------------------------------------------------------------------- |
| 102 | $ git show-ref --head --dereference |
| 103 | 832e76a9899f560a90ffd62ae2ce83bbeff58f54 HEAD |
| 104 | 832e76a9899f560a90ffd62ae2ce83bbeff58f54 refs/heads/master |
| 105 | 832e76a9899f560a90ffd62ae2ce83bbeff58f54 refs/heads/origin |
| 106 | 3521017556c5de4159da4615a39fa4d5d2c279b5 refs/tags/v0.99.9c |
| 107 | 6ddc0964034342519a87fe013781abf31c6db6ad refs/tags/v0.99.9c^{} |
| 108 | 055e4ae3ae6eb344cbabf2a5256a49ea66040131 refs/tags/v1.0rc4 |
| 109 | 423325a2d24638ddcc82ce47be5e40be550f4507 refs/tags/v1.0rc4^{} |
| 110 | ... |
| 111 | ----------------------------------------------------------------------------- |
| 112 | |
| 113 | When using --hash (and not --dereference) the output format is: '<SHA-1 ID>' |
| 114 | |
| 115 | ----------------------------------------------------------------------------- |
| 116 | $ git show-ref --heads --hash |
| 117 | 2e3ba0114a1f52b47df29743d6915d056be13278 |
| 118 | 185008ae97960c8d551adcd9e23565194651b5d1 |
| 119 | 03adf42c988195b50e1a1935ba5fcbc39b2b029b |
| 120 | ... |
| 121 | ----------------------------------------------------------------------------- |
| 122 | |
Junio C Hamano | b9d9d90 | 2018-05-23 07:07:42 | [diff] [blame] | 123 | EXAMPLES |
| 124 | -------- |
Junio C Hamano | a2ec14f | 2006-11-02 00:22:48 | [diff] [blame] | 125 | |
| 126 | To show all references called "master", whether tags or heads or anything |
| 127 | else, and regardless of how deep in the reference naming hierarchy they are, |
| 128 | use: |
| 129 | |
| 130 | ----------------------------------------------------------------------------- |
| 131 | git show-ref master |
| 132 | ----------------------------------------------------------------------------- |
| 133 | |
| 134 | This will show "refs/heads/master" but also "refs/remote/other-repo/master", |
| 135 | if such references exists. |
| 136 | |
Junio C Hamano | 92d8037 | 2016-07-13 22:00:05 | [diff] [blame] | 137 | When using the `--verify` flag, the command requires an exact path: |
Junio C Hamano | a2ec14f | 2006-11-02 00:22:48 | [diff] [blame] | 138 | |
| 139 | ----------------------------------------------------------------------------- |
| 140 | git show-ref --verify refs/heads/master |
| 141 | ----------------------------------------------------------------------------- |
| 142 | |
| 143 | will only match the exact branch called "master". |
| 144 | |
Junio C Hamano | 1aa40d2 | 2010-01-21 17:46:43 | [diff] [blame] | 145 | If nothing matches, 'git show-ref' will return an error code of 1, |
Junio C Hamano | a2ec14f | 2006-11-02 00:22:48 | [diff] [blame] | 146 | and in the case of verification, it will show an error message. |
| 147 | |
| 148 | For scripting, you can ask it to be quiet with the "--quiet" flag, which |
| 149 | allows you to do things like |
| 150 | |
| 151 | ----------------------------------------------------------------------------- |
Junio C Hamano | fce7c7e | 2008-07-02 03:06:38 | [diff] [blame] | 152 | git show-ref --quiet --verify -- "refs/heads/$headname" || |
Junio C Hamano | a2ec14f | 2006-11-02 00:22:48 | [diff] [blame] | 153 | echo "$headname is not a valid branch" |
| 154 | ----------------------------------------------------------------------------- |
| 155 | |
| 156 | to check whether a particular branch exists or not (notice how we don't |
| 157 | actually want to show any results, and we want to use the full refname for it |
| 158 | in order to not trigger the problem with ambiguous partial matches). |
| 159 | |
| 160 | To show only tags, or only proper branch heads, use "--tags" and/or "--heads" |
| 161 | respectively (using both means that it shows tags and heads, but not other |
| 162 | random references under the refs/ subdirectory). |
| 163 | |
| 164 | To do automatic tag object dereferencing, use the "-d" or "--dereference" |
| 165 | flag, so you can do |
| 166 | |
| 167 | ----------------------------------------------------------------------------- |
| 168 | git show-ref --tags --dereference |
| 169 | ----------------------------------------------------------------------------- |
| 170 | |
| 171 | to get a listing of all tags together with what they dereference. |
| 172 | |
Junio C Hamano | e85e36f | 2010-08-10 05:30:14 | [diff] [blame] | 173 | FILES |
| 174 | ----- |
| 175 | `.git/refs/*`, `.git/packed-refs` |
| 176 | |
Junio C Hamano | a2ec14f | 2006-11-02 00:22:48 | [diff] [blame] | 177 | SEE ALSO |
| 178 | -------- |
Junio C Hamano | fd98be8 | 2014-01-22 22:45:38 | [diff] [blame] | 179 | linkgit:git-for-each-ref[1], |
Junio C Hamano | e85e36f | 2010-08-10 05:30:14 | [diff] [blame] | 180 | linkgit:git-ls-remote[1], |
| 181 | linkgit:git-update-ref[1], |
| 182 | linkgit:gitrepository-layout[5] |
Junio C Hamano | a2ec14f | 2006-11-02 00:22:48 | [diff] [blame] | 183 | |
Junio C Hamano | a2ec14f | 2006-11-02 00:22:48 | [diff] [blame] | 184 | GIT |
| 185 | --- |
Junio C Hamano | f7c042d | 2008-06-06 22:50:53 | [diff] [blame] | 186 | Part of the linkgit:git[1] suite |