summaryrefslogtreecommitdiffstats
path: root/git-tag.txt
diff options
context:
space:
mode:
authorJunio C Hamano <junio@kernel.org>2011-07-19 20:02:13 +0000
committerJunio C Hamano <junio@kernel.org>2011-07-19 20:02:13 +0000
commit708376e8576f6d39b62b27ee9dfe7292c652f728 (patch)
treef0eaf132b1e3eac00257e9b51bbfc58285e261a3 /git-tag.txt
parent360e3a1e2a1605a257fceaa3f9a5cd99ce19f0f6 (diff)
downloadgit-htmldocs-708376e8576f6d39b62b27ee9dfe7292c652f728.tar.gz
Autogenerated HTML docs for v1.7.6-233-gd79bc
Diffstat (limited to 'git-tag.txt')
-rw-r--r--git-tag.txt9
1 files changed, 6 insertions, 3 deletions
diff --git a/git-tag.txt b/git-tag.txt
index d82f62120..fb1c0ac69 100644
--- a/git-tag.txt
+++ b/git-tag.txt
@@ -12,7 +12,7 @@ SYNOPSIS
'git tag' [-a | -s | -u <key-id>] [-f] [-m <msg> | -F <file>]
<tagname> [<commit> | <object>]
'git tag' -d <tagname>...
-'git tag' [-n[<num>]] -l [--contains <commit>] [<pattern>]
+'git tag' [-n[<num>]] -l [--contains <commit>] [<pattern>...]
'git tag' -v <tagname>...
DESCRIPTION
@@ -69,8 +69,11 @@ OPTIONS
If the tag is not annotated, the commit message is displayed instead.
-l <pattern>::
- List tags with names that match the given pattern (or all if no pattern is given).
- Typing "git tag" without arguments, also lists all tags.
+ List tags with names that match the given pattern (or all if no
+ pattern is given). Running "git tag" without arguments also
+ lists all tags. The pattern is a shell wildcard (i.e., matched
+ using fnmatch(3)). Multiple patterns may be given; if any of
+ them matches, the tag is shown.
--contains <commit>::
Only list tags which contain the specified commit.