summaryrefslogtreecommitdiff
path: root/Documentation
diff options
context:
space:
mode:
authorLibravatar Junio C Hamano <gitster@pobox.com>2012-02-20 00:15:28 -0800
committerLibravatar Junio C Hamano <gitster@pobox.com>2012-02-20 00:15:28 -0800
commit76bdcf0ee31afc020df104a4997ffae2a72ca302 (patch)
treeaba14de61b510a66498e7318bef35578f1ab04bf /Documentation
parentMerge branch 'jc/diff-stat-scaler' (diff)
parentbuiltin/tag.c: Fix a sparse warning (diff)
downloadtgif-76bdcf0ee31afc020df104a4997ffae2a72ca302.tar.xz
Merge branch 'tg/tag-points-at'
* tg/tag-points-at: builtin/tag.c: Fix a sparse warning tag: add --points-at list option
Diffstat (limited to 'Documentation')
-rw-r--r--Documentation/git-tag.txt6
1 files changed, 5 insertions, 1 deletions
diff --git a/Documentation/git-tag.txt b/Documentation/git-tag.txt
index 53ff5f6cf7..8d32b9a814 100644
--- a/Documentation/git-tag.txt
+++ b/Documentation/git-tag.txt
@@ -12,7 +12,8 @@ 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>] [--points-at <object>]
+ [<pattern>...]
'git tag' -v <tagname>...
DESCRIPTION
@@ -86,6 +87,9 @@ OPTIONS
--contains <commit>::
Only list tags which contain the specified commit.
+--points-at <object>::
+ Only list tags of the given object.
+
-m <msg>::
--message=<msg>::
Use the given tag message (instead of prompting).