* [BUG] 'git show-ref <pattern>' doesn't work (shows nothing)
@ 2010-10-18 10:03 Jakub Narebski
2010-10-18 11:33 ` [PATCH] git-show-ref.txt: clarify the pattern matching Michael J Gruber
0 siblings, 1 reply; 3+ messages in thread
From: Jakub Narebski @ 2010-10-18 10:03 UTC (permalink / raw)
To: git
In the git-show-ref documentation we read:
git-show-ref - List references in a local repository
SYNOPSIS
--------
[verse]
'git show-ref' [-q|--quiet] [--verify] [--head] [-d|--dereference]
[-s|--hash[=<n>]] [--abbrev[=<n>]] [--tags]
[--heads] [--] [<pattern>...]
'git show-ref' --exclude-existing[=<pattern>] < ref-list
DESCRIPTION
-----------
Displays references available in a local repository along with the
associated commit IDs. Results can be filtered using a pattern and
tags can be dereferenced into object IDs. Additionally, it can be
used to test whether a particular ref exists.
Let's overlook the fact that the using '--verify' is a separate way of
operation, and should be given seperate line in synopsis.
What is more important is that filtering using pattern doesn't work.
All of commands listed below produce empty output:
$ git show-ref refs/heads
$ git show-ref refs/heads/
$ git show-ref 'refs/heads/*'
$ git show-ref -- refs/heads
$ git show-ref -- 'refs/heads/*'
Note that using '--heads' gives output:
$ git show-ref --heads
01cc740941a6b81fd7be03484c83f688dc79a5f2 refs/heads/Git.pm
23b2a0387f0acd7e3cd906a0dc3c2c23dd32c03d refs/heads/autoconf
[...]
but I am more interested in patterns like 'refs/heads/gitweb/', or
'refs/remotes/origin/', or 'refs/tags/v*'.
For the time of being I'd have to use git-for-each-ref instead:
$ git for-each-ref refs/heads/
01cc740941a6b81fd7be03484c83f688dc79a5f2 commit refs/heads/Git.pm
23b2a0387f0acd7e3cd906a0dc3c2c23dd32c03d commit refs/heads/autoconf
(though to get same output I'd have to use appropriate <format>).
--
Jakub Narebski
Poland
^ permalink raw reply [flat|nested] 3+ messages in thread
* [PATCH] git-show-ref.txt: clarify the pattern matching
2010-10-18 10:03 [BUG] 'git show-ref <pattern>' doesn't work (shows nothing) Jakub Narebski
@ 2010-10-18 11:33 ` Michael J Gruber
2010-10-18 12:07 ` Jakub Narebski
0 siblings, 1 reply; 3+ messages in thread
From: Michael J Gruber @ 2010-10-18 11:33 UTC (permalink / raw)
To: git; +Cc: Junio C Hamano, Jakub Narebski
git-show-ref really does not do what one would expect under the name
pattern matching, so describe it.
Signed-off-by: Michael J Gruber <git@drmicha.warpmail.net>
---
Documentation/git-show-ref.txt | 6 +++++-
1 files changed, 5 insertions(+), 1 deletions(-)
diff --git a/Documentation/git-show-ref.txt b/Documentation/git-show-ref.txt
index 4696af7..be0ec18 100644
--- a/Documentation/git-show-ref.txt
+++ b/Documentation/git-show-ref.txt
@@ -84,7 +84,11 @@ OPTIONS
<pattern>...::
- Show references matching one or more patterns.
+ Show references matching one or more patterns. Patterns are matched from
+ the end of the full name, and only complete parts are matched, e.g.
+ 'master' matches 'refs/heads/master', 'refs/remotes/origin/master',
+ 'refs/tags/jedi/master' but not 'refs/heads/mymaster' nor
+ 'refs/remotes/master/jedi'.
OUTPUT
------
--
1.7.3.1.208.g53ea2
^ permalink raw reply related [flat|nested] 3+ messages in thread
end of thread, other threads:[~2010-10-18 12:07 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-10-18 10:03 [BUG] 'git show-ref <pattern>' doesn't work (shows nothing) Jakub Narebski
2010-10-18 11:33 ` [PATCH] git-show-ref.txt: clarify the pattern matching Michael J Gruber
2010-10-18 12:07 ` Jakub Narebski
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).