summaryrefslogtreecommitdiffstats
path: root/git-tag.txt
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2018-03-06 15:25:44 -0800
committerJunio C Hamano <gitster@pobox.com>2018-03-06 15:25:44 -0800
commit664750f03dff9b27b2c2fe5381a720967c1b60c1 (patch)
tree6960e5a2646c836d9415e1aa4aace2cea9aad4f1 /git-tag.txt
parent615c3b305d84007474d17c62d54fc18c71fdc587 (diff)
downloadgit-htmldocs-664750f03dff9b27b2c2fe5381a720967c1b60c1.tar.gz
Autogenerated HTML docs for v2.16.2-440-gc6284
Diffstat (limited to 'git-tag.txt')
-rw-r--r--git-tag.txt8
1 files changed, 7 insertions, 1 deletions
diff --git a/git-tag.txt b/git-tag.txt
index 956fc019f..1d17101ba 100644
--- a/git-tag.txt
+++ b/git-tag.txt
@@ -9,7 +9,7 @@ git-tag - Create, list, delete or verify a tag object signed with GPG
SYNOPSIS
--------
[verse]
-'git tag' [-a | -s | -u <keyid>] [-f] [-m <msg> | -F <file>]
+'git tag' [-a | -s | -u <keyid>] [-f] [-m <msg> | -F <file>] [-e]
<tagname> [<commit> | <object>]
'git tag' -d <tagname>...
'git tag' [-n[<num>]] -l [--contains <commit>] [--no-contains <commit>]
@@ -167,6 +167,12 @@ This option is only applicable when listing tags without annotation lines.
Implies `-a` if none of `-a`, `-s`, or `-u <keyid>`
is given.
+-e::
+--edit::
+ The message taken from file with `-F` and command line with
+ `-m` are usually used as the tag message unmodified.
+ This option lets you further edit the message taken from these sources.
+
--cleanup=<mode>::
This option sets how the tag message is cleaned up.
The '<mode>' can be one of 'verbatim', 'whitespace' and 'strip'. The