diff mercurial/commands.py @ 750:25986be9a1aa

Add tag -t, deprecate tag -m manifest hash: 893aa9732b500edfa6ffc099f76b00a88a5b1943
author mpm@selenic.com
date Thu, 21 Jul 2005 15:29:35 -0500
parents c3ce3976ae75
children 87e2b094ab86
line wrap: on
line diff
--- 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]'),