1384 @command('^commit|ci', |
1384 @command('^commit|ci', |
1385 [('A', 'addremove', None, |
1385 [('A', 'addremove', None, |
1386 _('mark new/missing files as added/removed before committing')), |
1386 _('mark new/missing files as added/removed before committing')), |
1387 ('', 'close-branch', None, |
1387 ('', 'close-branch', None, |
1388 _('mark a branch as closed, hiding it from the branch list')), |
1388 _('mark a branch as closed, hiding it from the branch list')), |
1389 ('', 'amend', None, _('amend the parent of the working dir')), |
1389 ('', 'amend', None, _('amend the parent of the working directory')), |
1390 ('s', 'secret', None, _('use the secret phase for committing')), |
1390 ('s', 'secret', None, _('use the secret phase for committing')), |
1391 ('e', 'edit', None, _('invoke editor on commit messages')), |
1391 ('e', 'edit', None, _('invoke editor on commit messages')), |
1392 ('i', 'interactive', None, _('use interactive mode')), |
1392 ('i', 'interactive', None, _('use interactive mode')), |
1393 ] + walkopts + commitopts + commitopts2 + subrepoopts, |
1393 ] + walkopts + commitopts + commitopts2 + subrepoopts, |
1394 _('[OPTION]... [FILE]...'), |
1394 _('[OPTION]... [FILE]...'), |