# 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 -r 7e4843b7efd2 -r 25986be9a1aa doc/hg.1.txt --- a/doc/hg.1.txt Thu Jul 21 15:05:17 2005 -0500 +++ b/doc/hg.1.txt Thu Jul 21 15:29:35 2005 -0500 @@ -342,7 +342,7 @@ -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 @@ options: -l, --local make the tag local - -t, --text 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 -r 7e4843b7efd2 -r 25986be9a1aa mercurial/commands.py --- a/mercurial/commands.py Thu Jul 21 15:05:17 2005 -0500 +++ b/mercurial/commands.py Thu Jul 21 15:29:35 2005 -0500 @@ -1185,7 +1185,8 @@ "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]'),