# HG changeset patch # User mpm@selenic.com # Date 1121966959 18000 # Node ID c3ce3976ae754627f55aa3d0c90fdb4c750c65b2 # Parent 9095e3456ea7f5c3d79e3219b1f05163e9f95977 Add -m for rawcommit manifest hash: cf066b609ab4854a731c103f1d456d89cf5e1312 diff -r 9095e3456ea7 -r c3ce3976ae75 doc/hg.1.txt --- a/doc/hg.1.txt Thu Jul 21 12:24:42 2005 -0500 +++ b/doc/hg.1.txt Thu Jul 21 12:29:19 2005 -0500 @@ -269,7 +269,7 @@ ssh://[user@]host[:port]/path -rawcommit [-p -d -u -F -t -l]:: +rawcommit [-p -d -u -F -m -l]:: Lowlevel commit, for use in helper scripts. This command is not intended to be used by normal users, as it is diff -r 9095e3456ea7 -r c3ce3976ae75 mercurial/commands.py --- a/mercurial/commands.py Thu Jul 21 12:24:42 2005 -0500 +++ b/mercurial/commands.py Thu Jul 21 12:29:19 2005 -0500 @@ -1156,7 +1156,8 @@ ('d', 'date', "", 'date code'), ('u', 'user', "", 'user'), ('F', 'files', "", 'file list'), - ('t', 'text', "", 'commit text'), + ('m', 'text', "", 'commit message'), + ('t', 'text', "", 'commit message (deprecated)'), ('l', 'logfile', "", 'commit text file')], 'hg rawcommit [OPTION]... [FILE]...'), "recover": (recover, [], "hg recover"),