Jonas Fonseca | c0990ff | 2006-09-18 14:32:41 +0200 | [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] |
Jonathan Nieder | e62b393 | 2009-11-09 09:04:46 -0600 | [diff] [blame] | 11 | 'git show-ref' [-q|--quiet] [--verify] [--head] [-d|--dereference] |
Stephen Boyd | 69932bc | 2009-06-20 21:40:46 -0700 | [diff] [blame] | 12 | [-s|--hash[=<n>]] [--abbrev[=<n>]] [--tags] |
Holger Weiß | 4318d3b | 2010-03-29 13:02:37 +0200 | [diff] [blame] | 13 | [--heads] [--] [<pattern>...] |
Stephen Boyd | 69932bc | 2009-06-20 21:40:46 -0700 | [diff] [blame] | 14 | 'git show-ref' --exclude-existing[=<pattern>] < ref-list |
Jonas Fonseca | c0990ff | 2006-09-18 14:32:41 +0200 | [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 | |
Julian Phillips | 8bd26c4 | 2007-04-09 21:57:36 +0100 | [diff] [blame] | 24 | The --exclude-existing form is a filter that does the inverse, it shows the |
| 25 | refs from stdin that don't exist in the local repository. |
| 26 | |
Jonas Fonseca | c0990ff | 2006-09-18 14:32:41 +0200 | [diff] [blame] | 27 | Use of this utility is encouraged in favor of directly accessing files under |
Stephen Boyd | d4900ee | 2009-06-20 21:40:45 -0700 | [diff] [blame] | 28 | the `.git` directory. |
Jonas Fonseca | c0990ff | 2006-09-18 14:32:41 +0200 | [diff] [blame] | 29 | |
| 30 | OPTIONS |
| 31 | ------- |
| 32 | |
Stephan Beyer | 3240240 | 2008-06-08 03:36:09 +0200 | [diff] [blame] | 33 | --head:: |
Jonas Fonseca | c0990ff | 2006-09-18 14:32:41 +0200 | [diff] [blame] | 34 | |
| 35 | Show the HEAD reference. |
| 36 | |
Stephan Beyer | 3240240 | 2008-06-08 03:36:09 +0200 | [diff] [blame] | 37 | --tags:: |
| 38 | --heads:: |
Jonas Fonseca | c0990ff | 2006-09-18 14:32:41 +0200 | [diff] [blame] | 39 | |
| 40 | Limit to only "refs/heads" and "refs/tags", respectively. These |
| 41 | options are not mutually exclusive; when given both, references stored |
| 42 | in "refs/heads" and "refs/tags" are displayed. |
| 43 | |
Stephan Beyer | 3240240 | 2008-06-08 03:36:09 +0200 | [diff] [blame] | 44 | -d:: |
| 45 | --dereference:: |
Jonas Fonseca | c0990ff | 2006-09-18 14:32:41 +0200 | [diff] [blame] | 46 | |
Michael Haggerty | 6ab2608 | 2012-01-13 17:39:15 +0100 | [diff] [blame] | 47 | Dereference tags into object IDs as well. They will be shown with "{caret}{}" |
Jonas Fonseca | c0990ff | 2006-09-18 14:32:41 +0200 | [diff] [blame] | 48 | appended. |
| 49 | |
Stephan Beyer | 3240240 | 2008-06-08 03:36:09 +0200 | [diff] [blame] | 50 | -s:: |
Stephen Boyd | 69932bc | 2009-06-20 21:40:46 -0700 | [diff] [blame] | 51 | --hash[=<n>]:: |
Christian Couder | 9581e0f | 2006-09-20 06:14:54 +0200 | [diff] [blame] | 52 | |
Stephen Boyd | d4900ee | 2009-06-20 21:40:45 -0700 | [diff] [blame] | 53 | Only show the SHA1 hash, not the reference name. When combined with |
Junio C Hamano | 2eaf222 | 2006-10-01 00:27:27 -0700 | [diff] [blame] | 54 | --dereference the dereferenced tag will still be shown after the SHA1. |
Christian Couder | 9581e0f | 2006-09-20 06:14:54 +0200 | [diff] [blame] | 55 | |
Jonas Fonseca | c0990ff | 2006-09-18 14:32:41 +0200 | [diff] [blame] | 56 | --verify:: |
| 57 | |
| 58 | Enable stricter reference checking by requiring an exact ref path. |
| 59 | Aside from returning an error code of 1, it will also print an error |
| 60 | message if '--quiet' was not specified. |
| 61 | |
Stephen Boyd | 69932bc | 2009-06-20 21:40:46 -0700 | [diff] [blame] | 62 | --abbrev[=<n>]:: |
Junio C Hamano | 2eaf222 | 2006-10-01 00:27:27 -0700 | [diff] [blame] | 63 | |
| 64 | Abbreviate the object name. When using `--hash`, you do |
Stephen Boyd | 69932bc | 2009-06-20 21:40:46 -0700 | [diff] [blame] | 65 | not have to say `--hash --abbrev`; `--hash=n` would do. |
Junio C Hamano | 2eaf222 | 2006-10-01 00:27:27 -0700 | [diff] [blame] | 66 | |
Stephan Beyer | 3240240 | 2008-06-08 03:36:09 +0200 | [diff] [blame] | 67 | -q:: |
| 68 | --quiet:: |
Jonas Fonseca | c0990ff | 2006-09-18 14:32:41 +0200 | [diff] [blame] | 69 | |
| 70 | Do not print any results to stdout. When combined with '--verify' this |
| 71 | can be used to silently check if a reference exists. |
| 72 | |
Stephen Boyd | 69932bc | 2009-06-20 21:40:46 -0700 | [diff] [blame] | 73 | --exclude-existing[=<pattern>]:: |
Julian Phillips | 8bd26c4 | 2007-04-09 21:57:36 +0100 | [diff] [blame] | 74 | |
Thomas Rast | 0b444cd | 2010-01-10 00:33:00 +0100 | [diff] [blame] | 75 | Make 'git show-ref' act as a filter that reads refs from stdin of the |
Michael Haggerty | 87b340b | 2012-01-13 17:39:16 +0100 | [diff] [blame] | 76 | form "`{caret}(?:<anything>\s)?<refname>(?:{backslash}{caret}{})?$`" |
Jonathan Nieder | f100598 | 2010-08-20 05:23:54 -0500 | [diff] [blame] | 77 | and performs the following actions on each: |
Michael Haggerty | 6ab2608 | 2012-01-13 17:39:15 +0100 | [diff] [blame] | 78 | (1) strip "{caret}{}" at the end of line if any; |
Julian Phillips | 8bd26c4 | 2007-04-09 21:57:36 +0100 | [diff] [blame] | 79 | (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 | |
Abhijit Menon-Sen | f448e24 | 2008-07-30 15:03:43 +0530 | [diff] [blame] | 85 | <pattern>...:: |
Jonas Fonseca | c0990ff | 2006-09-18 14:32:41 +0200 | [diff] [blame] | 86 | |
Michael J Gruber | 9fbd898 | 2010-10-18 13:33:32 +0200 | [diff] [blame] | 87 | Show references matching one or more patterns. Patterns are matched from |
| 88 | the 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'. |
Jonas Fonseca | c0990ff | 2006-09-18 14:32:41 +0200 | [diff] [blame] | 92 | |
| 93 | OUTPUT |
| 94 | ------ |
| 95 | |
| 96 | The output is in the format: '<SHA-1 ID>' '<space>' '<reference name>'. |
| 97 | |
| 98 | ----------------------------------------------------------------------------- |
| 99 | $ git show-ref --head --dereference |
| 100 | 832e76a9899f560a90ffd62ae2ce83bbeff58f54 HEAD |
| 101 | 832e76a9899f560a90ffd62ae2ce83bbeff58f54 refs/heads/master |
| 102 | 832e76a9899f560a90ffd62ae2ce83bbeff58f54 refs/heads/origin |
| 103 | 3521017556c5de4159da4615a39fa4d5d2c279b5 refs/tags/v0.99.9c |
| 104 | 6ddc0964034342519a87fe013781abf31c6db6ad refs/tags/v0.99.9c^{} |
| 105 | 055e4ae3ae6eb344cbabf2a5256a49ea66040131 refs/tags/v1.0rc4 |
| 106 | 423325a2d24638ddcc82ce47be5e40be550f4507 refs/tags/v1.0rc4^{} |
| 107 | ... |
| 108 | ----------------------------------------------------------------------------- |
| 109 | |
Christian Couder | 9581e0f | 2006-09-20 06:14:54 +0200 | [diff] [blame] | 110 | When using --hash (and not --dereference) the output format is: '<SHA-1 ID>' |
| 111 | |
| 112 | ----------------------------------------------------------------------------- |
| 113 | $ git show-ref --heads --hash |
| 114 | 2e3ba0114a1f52b47df29743d6915d056be13278 |
| 115 | 185008ae97960c8d551adcd9e23565194651b5d1 |
| 116 | 03adf42c988195b50e1a1935ba5fcbc39b2b029b |
| 117 | ... |
| 118 | ----------------------------------------------------------------------------- |
| 119 | |
Jonas Fonseca | c0990ff | 2006-09-18 14:32:41 +0200 | [diff] [blame] | 120 | EXAMPLE |
| 121 | ------- |
| 122 | |
| 123 | To show all references called "master", whether tags or heads or anything |
| 124 | else, and regardless of how deep in the reference naming hierarchy they are, |
| 125 | use: |
| 126 | |
| 127 | ----------------------------------------------------------------------------- |
| 128 | git show-ref master |
| 129 | ----------------------------------------------------------------------------- |
| 130 | |
| 131 | This will show "refs/heads/master" but also "refs/remote/other-repo/master", |
| 132 | if such references exists. |
| 133 | |
| 134 | When using the '--verify' flag, the command requires an exact path: |
| 135 | |
| 136 | ----------------------------------------------------------------------------- |
| 137 | git show-ref --verify refs/heads/master |
| 138 | ----------------------------------------------------------------------------- |
| 139 | |
| 140 | will only match the exact branch called "master". |
| 141 | |
Thomas Rast | 0b444cd | 2010-01-10 00:33:00 +0100 | [diff] [blame] | 142 | If nothing matches, 'git show-ref' will return an error code of 1, |
Jonas Fonseca | c0990ff | 2006-09-18 14:32:41 +0200 | [diff] [blame] | 143 | and in the case of verification, it will show an error message. |
| 144 | |
| 145 | For scripting, you can ask it to be quiet with the "--quiet" flag, which |
| 146 | allows you to do things like |
| 147 | |
| 148 | ----------------------------------------------------------------------------- |
Jonathan Nieder | b1889c3 | 2008-06-30 01:09:04 -0500 | [diff] [blame] | 149 | git show-ref --quiet --verify -- "refs/heads/$headname" || |
Jonas Fonseca | c0990ff | 2006-09-18 14:32:41 +0200 | [diff] [blame] | 150 | echo "$headname is not a valid branch" |
| 151 | ----------------------------------------------------------------------------- |
| 152 | |
| 153 | to check whether a particular branch exists or not (notice how we don't |
| 154 | actually want to show any results, and we want to use the full refname for it |
| 155 | in order to not trigger the problem with ambiguous partial matches). |
| 156 | |
| 157 | To show only tags, or only proper branch heads, use "--tags" and/or "--heads" |
| 158 | respectively (using both means that it shows tags and heads, but not other |
| 159 | random references under the refs/ subdirectory). |
| 160 | |
| 161 | To do automatic tag object dereferencing, use the "-d" or "--dereference" |
| 162 | flag, so you can do |
| 163 | |
| 164 | ----------------------------------------------------------------------------- |
| 165 | git show-ref --tags --dereference |
| 166 | ----------------------------------------------------------------------------- |
| 167 | |
| 168 | to get a listing of all tags together with what they dereference. |
| 169 | |
Jonathan Nieder | 977ed83 | 2010-08-08 20:32:43 -0500 | [diff] [blame] | 170 | FILES |
| 171 | ----- |
| 172 | `.git/refs/*`, `.git/packed-refs` |
| 173 | |
Jonas Fonseca | c0990ff | 2006-09-18 14:32:41 +0200 | [diff] [blame] | 174 | SEE ALSO |
| 175 | -------- |
Jonathan Nieder | 977ed83 | 2010-08-08 20:32:43 -0500 | [diff] [blame] | 176 | linkgit:git-ls-remote[1], |
| 177 | linkgit:git-update-ref[1], |
| 178 | linkgit:gitrepository-layout[5] |
Jonas Fonseca | c0990ff | 2006-09-18 14:32:41 +0200 | [diff] [blame] | 179 | |
Jonas Fonseca | c0990ff | 2006-09-18 14:32:41 +0200 | [diff] [blame] | 180 | GIT |
| 181 | --- |
Christian Couder | 9e1f0a8 | 2008-06-06 09:07:32 +0200 | [diff] [blame] | 182 | Part of the linkgit:git[1] suite |