mercurial/commands.py
changeset 2966 3b7626b861f8
parent 2965 890e285c52a1
child 2971 63c3a1921a67
equal deleted inserted replaced
2965:890e285c52a1 2966:3b7626b861f8
  3047           ('X', 'exclude', [], _('exclude names matching the given patterns')),
  3047           ('X', 'exclude', [], _('exclude names matching the given patterns')),
  3048           ('n', 'dry-run', None, _('do not perform actions, just print output'))],
  3048           ('n', 'dry-run', None, _('do not perform actions, just print output'))],
  3049          _('hg rename [OPTION]... SOURCE... DEST')),
  3049          _('hg rename [OPTION]... SOURCE... DEST')),
  3050     "^revert":
  3050     "^revert":
  3051         (revert,
  3051         (revert,
  3052          [('', 'all', None, _('revert all changes when no arguments given')),
  3052          [('a', 'all', None, _('revert all changes when no arguments given')),
  3053           ('r', 'rev', '', _('revision to revert to')),
  3053           ('r', 'rev', '', _('revision to revert to')),
  3054           ('', 'no-backup', None, _('do not save backup copies of files')),
  3054           ('', 'no-backup', None, _('do not save backup copies of files')),
  3055           ('I', 'include', [], _('include names matching given patterns')),
  3055           ('I', 'include', [], _('include names matching given patterns')),
  3056           ('X', 'exclude', [], _('exclude names matching given patterns')),
  3056           ('X', 'exclude', [], _('exclude names matching given patterns')),
  3057           ('n', 'dry-run', None, _('do not perform actions, just print output'))],
  3057           ('n', 'dry-run', None, _('do not perform actions, just print output'))],