]> git.ipfire.org Git - thirdparty/git.git/blobdiff - Documentation/git-tag.txt
Merge branch 'tb/ci-run-cocci-with-18.04' into maint
[thirdparty/git.git] / Documentation / git-tag.txt
index dadbd71d62b86ce01c3ed43889f522d08b2e0cea..56656d1be60331cf9896b02e0ccf553c83d88b01 100644 (file)
@@ -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
@@ -380,7 +380,7 @@ include::date-formats.txt[]
 NOTES
 -----
 
-include::filters.txt[]
+include::ref-reachability-filters.txt[]
 
 SEE ALSO
 --------