summaryrefslogtreecommitdiff
path: root/Documentation/git-tag.txt
diff options
context:
space:
mode:
authorNguyễn Thái Ngọc Duy <pclouds@gmail.com>2012-04-13 10:54:41 (GMT)
committerJunio C Hamano <gitster@pobox.com>2012-04-27 16:26:39 (GMT)
commitd96e3c150f2b4508f2e7d23ce9183d5b807c2155 (patch)
tree3870f74de02ffd581480b949eb8fcfa74362aec0 /Documentation/git-tag.txt
parentb27004eb32139977f8fa5c01eb235535661f9201 (diff)
downloadgit-d96e3c150f2b4508f2e7d23ce9183d5b807c2155.zip
git-d96e3c150f2b4508f2e7d23ce9183d5b807c2155.tar.gz
git-d96e3c150f2b4508f2e7d23ce9183d5b807c2155.tar.bz2
tag: add --column
Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Documentation/git-tag.txt')
-rw-r--r--Documentation/git-tag.txt9
1 files changed, 9 insertions, 0 deletions
diff --git a/Documentation/git-tag.txt b/Documentation/git-tag.txt
index 8d32b9a..e36a7c3 100644
--- a/Documentation/git-tag.txt
+++ b/Documentation/git-tag.txt
@@ -13,6 +13,7 @@ SYNOPSIS
<tagname> [<commit> | <object>]
'git tag' -d <tagname>...
'git tag' [-n[<num>]] -l [--contains <commit>] [--points-at <object>]
+ [--column[=<options>] | --no-column] [<pattern>...]
[<pattern>...]
'git tag' -v <tagname>...
@@ -84,6 +85,14 @@ OPTIONS
using fnmatch(3)). Multiple patterns may be given; if any of
them matches, the tag is shown.
+--column[=<options>]::
+--no-column::
+ Display tag listing in columns. See configuration variable
+ column.tag for option syntax.`--column` and `--no-column`
+ without options are equivalent to 'always' and 'never' respectively.
++
+This option is only applicable when listing tags without annotation lines.
+
--contains <commit>::
Only list tags which contain the specified commit.