# HG changeset patch # User mpm@selenic.com # Date 1121977775 18000 # Node ID 25986be9a1aaf84aa2e3fe4142818c32f2d6d959 # Parent 7e4843b7efd2f1672b428c9f34e30624cfa77567 Add tag -t, deprecate tag -m manifest hash: 893aa9732b500edfa6ffc099f76b00a88a5b1943 diff --git a/doc/hg.1.txt b/doc/hg.1.txt --- a/doc/hg.1.txt +++ b/doc/hg.1.txt @@ -342,7 +342,7 @@ status [options] [files]:: -I, --include include directories matching the given patterns -X, --exclude exclude directories matching the given patterns -tag [-l -t -d -u ] [revision]:: +tag [-l -m -d -u ] [revision]:: Name a particular revision using . Tags are used to name particular revisions of the repository and are @@ -358,7 +358,7 @@ tag [-l -t -d -u message for tag commit log entry + -m, --text message for tag commit log entry -d, --date datecode for commit -u, --user user for commit diff --git a/mercurial/commands.py b/mercurial/commands.py --- a/mercurial/commands.py +++ b/mercurial/commands.py @@ -1185,7 +1185,8 @@ table = { "tag": (tag, [('l', 'local', None, 'make the tag local'), - ('t', 'text', "", 'commit text'), + ('m', 'text', "", 'commit message'), + ('t', 'text', "", 'commit message (deprecated)'), ('d', 'date', "", 'date code'), ('u', 'user', "", 'user')], 'hg tag [OPTION]... NAME [REV]'),