##// END OF EJS Templates
Add -m for commit and deprecate -t...
mpm@selenic.com -
r745:9246ae92 default
parent child Browse files
Show More
@@ -100,7 +100,7 b' clone [-U] <source> [dest]::'
100 100 options:
101 101 -U, --noupdate do not update the new working directory
102 102
103 commit [-A -t -l <file> -t <text> -u <user> -d <datecode>] [files...]::
103 commit [-A -t -l <file> -m <text> -u <user> -d <datecode>] [files...]::
104 104 Commit changes to the given files into the repository.
105 105
106 106 If a list of files is omitted, all changes reported by "hg status"
@@ -112,7 +112,7 b' commit [-A -t -l <file> -t <text> -u <us'
112 112 Options:
113 113
114 114 -A, --addremove run addremove during commit
115 -t, --text <text> use <text> as commit message
115 -m, --text <text> use <text> as commit message
116 116 -l, --logfile <file> show the commit message for the given file
117 117 -d, --date <datecode> record datecode as commit date
118 118 -u, --user <user> record user as commiter
@@ -1099,7 +1099,8 b' table = {'
1099 1099 "^commit|ci":
1100 1100 (commit,
1101 1101 [('A', 'addremove', None, 'run add/remove during commit'),
1102 ('t', 'text', "", 'commit text'),
1102 ('m', 'text', "", 'commit message'),
1103 ('t', 'text', "", 'commit message (deprecated)'),
1103 1104 ('l', 'logfile', "", 'commit text file'),
1104 1105 ('d', 'date', "", 'date code'),
1105 1106 ('u', 'user', "", 'user')],
General Comments 0
You need to be logged in to leave comments. Login now