Mercurial > public > mercurial-scm > hg
comparison mercurial/commands.py @ 2983:3b7626b861f8
revert: add -a as alias for --all
author | Vadim Gelfer <vadim.gelfer@gmail.com> |
---|---|
date | Mon, 21 Aug 2006 11:05:43 -0700 |
parents | 890e285c52a1 |
children | 63c3a1921a67 |
comparison
equal
deleted
inserted
replaced
2982:890e285c52a1 | 2983: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'))], |