##// END OF EJS Templates
Update style of record's cmdtable to match mercurial/commands.py
Thomas Arendsen Hein -
r5040:4f34d9b2 default
parent child Browse files
Show More
@@ -371,11 +371,12 b' def record(ui, repo, *pats, **opts):'
371 return cmdutil.commit(ui, repo, recordfunc, pats, opts)
371 return cmdutil.commit(ui, repo, recordfunc, pats, opts)
372
372
373 cmdtable = {
373 cmdtable = {
374 'record':
374 "record":
375 (record, [('A', 'addremove', None,
375 (record,
376 _('mark new/missing files as added/removed before committing')),
376 [('A', 'addremove', None,
377 ('d', 'date', '', _('record datecode as commit date')),
377 _('mark new/missing files as added/removed before committing')),
378 ('u', 'user', '', _('record user as commiter')),
378 ('d', 'date', '', _('record datecode as commit date')),
379 ] + commands.walkopts + commands.commitopts,
379 ('u', 'user', '', _('record user as commiter')),
380 _('hg record [FILE]...')),
380 ] + commands.walkopts + commands.commitopts,
381 }
381 _('hg record [OPTION]... [FILE]...')),
382 }
@@ -1,5 +1,5 b''
1 % help
1 % help
2 hg record [FILE]...
2 hg record [OPTION]... [FILE]...
3
3
4 interactively select changes to commit
4 interactively select changes to commit
5
5
General Comments 0
You need to be logged in to leave comments. Login now