2561 ('l', 'logfile', '', _('commit message file'))], |
2561 ('l', 'logfile', '', _('commit message file'))], |
2562 _('hg debugrawcommit [OPTION]... [FILE]...')), |
2562 _('hg debugrawcommit [OPTION]... [FILE]...')), |
2563 "recover": (recover, [], _('hg recover')), |
2563 "recover": (recover, [], _('hg recover')), |
2564 "^remove|rm": |
2564 "^remove|rm": |
2565 (remove, |
2565 (remove, |
2566 [('I', 'include', [], _('include names matching the given patterns')), |
2566 [('f', 'force', None, _('remove file even if modified')), |
2567 ('X', 'exclude', [], _('exclude names matching the given patterns')), |
2567 ('I', 'include', [], _('include names matching the given patterns')), |
2568 ('f', 'force', None, _('remove file even if modified'))], |
2568 ('X', 'exclude', [], _('exclude names matching the given patterns'))], |
2569 _('hg remove [OPTION]... FILE...')), |
2569 _('hg remove [OPTION]... FILE...')), |
2570 "rename|mv": |
2570 "rename|mv": |
2571 (rename, |
2571 (rename, |
2572 [('A', 'after', None, _('record a rename that has already occurred')), |
2572 [('A', 'after', None, _('record a rename that has already occurred')), |
2573 ('f', 'force', None, |
2573 ('f', 'force', None, |
2574 _('forcibly copy over an existing managed file')), |
2574 _('forcibly copy over an existing managed file')), |
2575 ('I', 'include', [], _('include names matching the given patterns')), |
2575 ('I', 'include', [], _('include names matching the given patterns')), |
2576 ('X', 'exclude', [], _('exclude names matching the given patterns'))], |
2576 ('X', 'exclude', [], _('exclude names matching the given patterns'))], |
2577 _('hg rename [OPTION]... [SOURCE]... DEST')), |
2577 _('hg rename [OPTION]... SOURCE... DEST')), |
2578 "^revert": |
2578 "^revert": |
2579 (revert, |
2579 (revert, |
2580 [('r', 'rev', '', _('revision to revert to')), |
2580 [('r', 'rev', '', _('revision to revert to')), |
2581 ('I', 'include', [], _('include names matching the given patterns')), |
2581 ('I', 'include', [], _('include names matching the given patterns')), |
2582 ('X', 'exclude', [], _('exclude names matching the given patterns'))], |
2582 ('X', 'exclude', [], _('exclude names matching the given patterns'))], |