# HG changeset patch # User mpm@selenic.com # Date 1121966635 18000 # Node ID 9246ae925d573f41d381611b4510952a33cd7a5e # Parent 3d88f6dd1ed4b411ff8f88a65d931c62bc4c545b Add -m for commit and deprecate -t Index: hg/doc/hg.1.txt =================================================================== diff -r 3d88f6dd1ed4 -r 9246ae925d57 doc/hg.1.txt --- a/doc/hg.1.txt Thu Jul 21 12:22:54 2005 -0500 +++ b/doc/hg.1.txt Thu Jul 21 12:23:55 2005 -0500 @@ -100,7 +100,7 @@ options: -U, --noupdate do not update the new working directory -commit [-A -t -l -t -u -d ] [files...]:: +commit [-A -t -l -m -u -d ] [files...]:: Commit changes to the given files into the repository. If a list of files is omitted, all changes reported by "hg status" @@ -112,7 +112,7 @@ Options: -A, --addremove run addremove during commit - -t, --text use as commit message + -m, --text use as commit message -l, --logfile show the commit message for the given file -d, --date record datecode as commit date -u, --user record user as commiter diff -r 3d88f6dd1ed4 -r 9246ae925d57 mercurial/commands.py --- a/mercurial/commands.py Thu Jul 21 12:22:54 2005 -0500 +++ b/mercurial/commands.py Thu Jul 21 12:23:55 2005 -0500 @@ -1099,7 +1099,8 @@ "^commit|ci": (commit, [('A', 'addremove', None, 'run add/remove during commit'), - ('t', 'text', "", 'commit text'), + ('m', 'text', "", 'commit message'), + ('t', 'text', "", 'commit message (deprecated)'), ('l', 'logfile', "", 'commit text file'), ('d', 'date', "", 'date code'), ('u', 'user', "", 'user')],