summaryrefslogtreecommitdiff
path: root/Documentation
diff options
context:
space:
mode:
authorNikolai Weibull <mailing-lists.git@rawuncut.elitemail.org>2005-12-08 23:28:05 (GMT)
committerJunio C Hamano <junkio@cox.net>2005-12-08 23:50:15 (GMT)
commitd839091d13c408cc0662e22830cab6ef36be74bf (patch)
treea20c86a56ca32563ea142bfcf8952d70681cf2d7 /Documentation
parent03f6c23c5edb2590c71e4e8c33f20c3449407a72 (diff)
downloadgit-d839091d13c408cc0662e22830cab6ef36be74bf.zip
git-d839091d13c408cc0662e22830cab6ef36be74bf.tar.gz
git-d839091d13c408cc0662e22830cab6ef36be74bf.tar.bz2
Documentation/git-tag.txt: Fix the order of sections (DESCRIPTION should come before OPTIONS).
Signed-off-by: Nikolai Weibull <nikolai@bitwi.se> Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'Documentation')
-rw-r--r--Documentation/git-tag.txt40
1 files changed, 20 insertions, 20 deletions
diff --git a/Documentation/git-tag.txt b/Documentation/git-tag.txt
index 841c9dc..e8892bb 100644
--- a/Documentation/git-tag.txt
+++ b/Documentation/git-tag.txt
@@ -10,26 +10,6 @@ SYNOPSIS
--------
'git-tag' [-a | -s | -u <key-id>] [-f | -d] [-m <msg>] <name> [<head>]
-OPTIONS
--------
--a::
- Make an unsigned, annotated tag object
-
--s::
- Make a GPG-signed tag, using the default e-mail address's key
-
--u <key-id>::
- Make a GPG-signed tag, using the given key
-
--f::
- Replace an existing tag with the given name (instead of failing)
-
--d::
- Delete an existing tag with the given name
-
--m <msg>::
- Use the given tag message (instead of prompting)
-
DESCRIPTION
-----------
Adds a 'tag' reference in .git/refs/tags/
@@ -52,6 +32,26 @@ GnuPG key for signing.
`-d <tag>` deletes the tag.
+OPTIONS
+-------
+-a::
+ Make an unsigned, annotated tag object
+
+-s::
+ Make a GPG-signed tag, using the default e-mail address's key
+
+-u <key-id>::
+ Make a GPG-signed tag, using the given key
+
+-f::
+ Replace an existing tag with the given name (instead of failing)
+
+-d::
+ Delete an existing tag with the given name
+
+-m <msg>::
+ Use the given tag message (instead of prompting)
+
Author
------