Mercurial > hg
changeset 2416:04736f38d74f
make description of -n option better.
author | Vadim Gelfer <vadim.gelfer@gmail.com> |
---|---|
date | Fri, 09 Jun 2006 09:09:17 -0700 |
parents | dec79ed61ee1 |
children | 3a4ae3970af3 |
files | mercurial/commands.py |
diffstat | 1 files changed, 5 insertions(+), 5 deletions(-) [+] |
line wrap: on
line diff
--- a/mercurial/commands.py Fri Jun 09 09:06:40 2006 -0700 +++ b/mercurial/commands.py Fri Jun 09 09:09:17 2006 -0700 @@ -2808,13 +2808,13 @@ (add, [('I', 'include', [], _('include names matching the given patterns')), ('X', 'exclude', [], _('exclude names matching the given patterns')), - ('n', 'dry-run', None, _('print what would be done'))], + ('n', 'dry-run', None, _('do not perform actions, just print output'))], _('hg add [OPTION]... [FILE]...')), "debugaddremove|addremove": (addremove, [('I', 'include', [], _('include names matching the given patterns')), ('X', 'exclude', [], _('exclude names matching the given patterns')), - ('n', 'dry-run', None, _('print what would be done'))], + ('n', 'dry-run', None, _('do not perform actions, just print output'))], _('hg addremove [OPTION]... [FILE]...')), "^annotate": (annotate, @@ -2887,7 +2887,7 @@ _('forcibly copy over an existing managed file')), ('I', 'include', [], _('include names matching the given patterns')), ('X', 'exclude', [], _('exclude names matching the given patterns')), - ('n', 'dry-run', None, _('print what would be done'))], + ('n', 'dry-run', None, _('do not perform actions, just print output'))], _('hg copy [OPTION]... [SOURCE]... DEST')), "debugancestor": (debugancestor, [], _('debugancestor INDEX REV1 REV2')), "debugcomplete": @@ -3070,7 +3070,7 @@ _('forcibly copy over an existing managed file')), ('I', 'include', [], _('include names matching the given patterns')), ('X', 'exclude', [], _('exclude names matching the given patterns')), - ('n', 'dry-run', None, _('print what would be done'))], + ('n', 'dry-run', None, _('do not perform actions, just print output'))], _('hg rename [OPTION]... SOURCE... DEST')), "^revert": (revert, @@ -3078,7 +3078,7 @@ ('', 'no-backup', None, _('do not save backup copies of files')), ('I', 'include', [], _('include names matching given patterns')), ('X', 'exclude', [], _('exclude names matching given patterns')), - ('n', 'dry-run', None, _('print what would be done'))], + ('n', 'dry-run', None, _('do not perform actions, just print output'))], _('hg revert [-r REV] [NAME]...')), "rollback": (rollback, [], _('hg rollback')), "root": (root, [], _('hg root')),