summaryrefslogtreecommitdiff
path: root/Documentation/git-tag.txt
diff options
context:
space:
mode:
authorJohannes Schindelin <Johannes.Schindelin@gmx.de>2006-12-21 14:13:02 (GMT)
committerJunio C Hamano <junkio@cox.net>2006-12-22 06:44:04 (GMT)
commitf79c73ce9ce5d8bd1b4abaf3fc384aa8daa169ef (patch)
tree11eb5596425275e075df0226524ceb633edfa295 /Documentation/git-tag.txt
parent9e11554917d391c18e043bc0b38ee0377e69568e (diff)
downloadgit-f79c73ce9ce5d8bd1b4abaf3fc384aa8daa169ef.zip
git-f79c73ce9ce5d8bd1b4abaf3fc384aa8daa169ef.tar.gz
git-f79c73ce9ce5d8bd1b4abaf3fc384aa8daa169ef.tar.bz2
git-tag: support -F <file> option
This imitates the behaviour of git-commit. Noticed by Han-Wen Nienhuys. Signed-off-by: Johannes Schindelin <Johannes.Schindelin@gmx.de> Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'Documentation/git-tag.txt')
-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 45476c2..48b82b8 100644
--- a/Documentation/git-tag.txt
+++ b/Documentation/git-tag.txt
@@ -9,7 +9,8 @@ git-tag - Create a tag object signed with GPG
SYNOPSIS
--------
[verse]
-'git-tag' [-a | -s | -u <key-id>] [-f | -d] [-m <msg>] <name> [<head>]
+'git-tag' [-a | -s | -u <key-id>] [-f | -d] [-m <msg> | -F <file>]
+ <name> [<head>]
'git-tag' -l [<pattern>]
DESCRIPTION
@@ -60,6 +61,9 @@ OPTIONS
-m <msg>::
Use the given tag message (instead of prompting)
+-F <file>::
+ Take the tag message from the given file. Use '-' to
+ read the message from the standard input.
Author
------