summaryrefslogtreecommitdiffstats
path: root/git-tag.txt
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2020-09-22 13:14:53 -0700
committerJunio C Hamano <gitster@pobox.com>2020-09-22 13:14:53 -0700
commitb89e21bf03b9675dec757d6e63db8d859b034303 (patch)
tree34cb466dea8ce5ccb8a99e56c09585f469e37104 /git-tag.txt
parent5093e585a82e361cce2270aafd5f1b6954353021 (diff)
downloadgit-htmldocs-b89e21bf03b9675dec757d6e63db8d859b034303.tar.gz
Autogenerated HTML docs for v2.28.0-585-ge1cff
Diffstat (limited to 'git-tag.txt')
-rw-r--r--git-tag.txt11
1 files changed, 8 insertions, 3 deletions
diff --git a/git-tag.txt b/git-tag.txt
index f6d979178..56656d1be 100644
--- a/git-tag.txt
+++ b/git-tag.txt
@@ -15,7 +15,7 @@ SYNOPSIS
'git tag' [-n[<num>]] -l [--contains <commit>] [--no-contains <commit>]
[--points-at <object>] [--column[=<options>] | --no-column]
[--create-reflog] [--sort=<key>] [--format=<format>]
- [--[no-]merged [<commit>]] [<pattern>...]
+ [--merged <commit>] [--no-merged <commit>] [<pattern>...]
'git tag' -v [--format=<format>] <tagname>...
DESCRIPTION
@@ -149,11 +149,11 @@ This option is only applicable when listing tags without annotation lines.
--merged [<commit>]::
Only list tags whose commits are reachable from the specified
- commit (`HEAD` if not specified), incompatible with `--no-merged`.
+ commit (`HEAD` if not specified).
--no-merged [<commit>]::
Only list tags whose commits are not reachable from the specified
- commit (`HEAD` if not specified), incompatible with `--merged`.
+ commit (`HEAD` if not specified).
--points-at <object>::
Only list tags of the given object (HEAD if not
@@ -377,6 +377,11 @@ $ GIT_COMMITTER_DATE="2006-10-02 10:31" git tag -s v1.0.1
include::date-formats.txt[]
+NOTES
+-----
+
+include::ref-reachability-filters.txt[]
+
SEE ALSO
--------
linkgit:git-check-ref-format[1].