Show More
@@ -358,7 +358,7 typeset -A _hg_cmd_globals | |||
|
358 | 358 | _hg_diff_opts=( |
|
359 | 359 | '(--text -a)'{-a,--text}'[treat all files as text]' |
|
360 | 360 | '(--git -g)'{-g,--git}'[use git extended diff format]' |
|
361 |
"--nodates[ |
|
|
361 | "--nodates[omit dates from diff headers]") | |
|
362 | 362 | |
|
363 | 363 | _hg_dryrun_opts=( |
|
364 | 364 | '(--dry-run -n)'{-n,--dry-run}'[do not perform actions, just print output]') |
@@ -3330,7 +3330,7 logopts = [ | |||
|
3330 | 3330 | diffopts = [ |
|
3331 | 3331 | ('a', 'text', None, _('treat all files as text')), |
|
3332 | 3332 | ('g', 'git', None, _('use git extended diff format')), |
|
3333 |
('', 'nodates', None, _( |
|
|
3333 | ('', 'nodates', None, _('omit dates from diff headers')) | |
|
3334 | 3334 | ] |
|
3335 | 3335 | |
|
3336 | 3336 | diffopts2 = [ |
@@ -3412,11 +3412,11 table = { | |||
|
3412 | 3412 | "bundle": |
|
3413 | 3413 | (bundle, |
|
3414 | 3414 | [('f', 'force', None, |
|
3415 |
_('run even when |
|
|
3415 | _('run even when the destination is unrelated')), | |
|
3416 | 3416 | ('r', 'rev', [], |
|
3417 | _('a changeset up to which you would like to bundle')), | |
|
3417 | _('a changeset intended to be added to the destination')), | |
|
3418 | 3418 | ('', 'base', [], |
|
3419 |
_('a base changeset |
|
|
3419 | _('a base changeset assumed to be available at the destination')), | |
|
3420 | 3420 | ('a', 'all', None, _('bundle all changesets in the repository')), |
|
3421 | 3421 | ('t', 'type', 'bzip2', _('bundle compression type to use')), |
|
3422 | 3422 | ] + remoteopts, |
@@ -3431,11 +3431,11 table = { | |||
|
3431 | 3431 | "^clone": |
|
3432 | 3432 | (clone, |
|
3433 | 3433 | [('U', 'noupdate', None, |
|
3434 |
_('the clone will |
|
|
3434 | _('the clone will include an empty working copy (only a repository)')), | |
|
3435 | 3435 | ('u', 'updaterev', '', |
|
3436 | 3436 | _('revision, tag or branch to check out')), |
|
3437 | 3437 | ('r', 'rev', [], |
|
3438 |
_(' |
|
|
3438 | _('include the specified changeset')), | |
|
3439 | 3439 | ('', 'pull', None, _('use pull protocol to copy metadata')), |
|
3440 | 3440 | ('', 'uncompressed', None, |
|
3441 | 3441 | _('use uncompressed transfer (fast over LAN)')), |
@@ -3562,11 +3562,11 table = { | |||
|
3562 | 3562 | "incoming|in": |
|
3563 | 3563 | (incoming, |
|
3564 | 3564 | [('f', 'force', None, |
|
3565 |
_('run even |
|
|
3565 | _('run even if remote repository is unrelated')), | |
|
3566 | 3566 | ('n', 'newest-first', None, _('show newest record first')), |
|
3567 | 3567 | ('', 'bundle', '', _('file to store the bundles into')), |
|
3568 | 3568 | ('r', 'rev', [], |
|
3569 | _('a specific remote revision up to which you would like to pull')), | |
|
3569 | _('a remote changeset intended to be added')), | |
|
3570 | 3570 | ] + logopts + remoteopts, |
|
3571 | 3571 | _('[-p] [-n] [-M] [-f] [-r REV]...' |
|
3572 | 3572 | ' [--bundle FILENAME] [SOURCE]')), |
@@ -3576,7 +3576,7 table = { | |||
|
3576 | 3576 | _('[-e CMD] [--remotecmd CMD] [DEST]')), |
|
3577 | 3577 | "locate": |
|
3578 | 3578 | (locate, |
|
3579 |
[('r', 'rev', '', _('search the repository as it |
|
|
3579 | [('r', 'rev', '', _('search the repository as it is in REV')), | |
|
3580 | 3580 | ('0', 'print0', None, |
|
3581 | 3581 | _('end filenames with NUL, for use with xargs')), |
|
3582 | 3582 | ('f', 'fullpath', None, |
@@ -3617,15 +3617,15 table = { | |||
|
3617 | 3617 | "outgoing|out": |
|
3618 | 3618 | (outgoing, |
|
3619 | 3619 | [('f', 'force', None, |
|
3620 |
_('run even when |
|
|
3620 | _('run even when the destination is unrelated')), | |
|
3621 | 3621 | ('r', 'rev', [], |
|
3622 | _('a specific revision up to which you would like to push')), | |
|
3622 | _('a changeset intended to be included in the destination')), | |
|
3623 | 3623 | ('n', 'newest-first', None, _('show newest record first')), |
|
3624 | 3624 | ] + logopts + remoteopts, |
|
3625 | 3625 | _('[-M] [-p] [-n] [-f] [-r REV]... [DEST]')), |
|
3626 | 3626 | "parents": |
|
3627 | 3627 | (parents, |
|
3628 |
[('r', 'rev', '', _('show parents |
|
|
3628 | [('r', 'rev', '', _('show parents of the specified revision')), | |
|
3629 | 3629 | ] + templateopts, |
|
3630 | 3630 | _('[-r REV] [FILE]')), |
|
3631 | 3631 | "paths": (paths, [], _('[NAME]')), |
@@ -3636,14 +3636,14 table = { | |||
|
3636 | 3636 | ('f', 'force', None, |
|
3637 | 3637 | _('run even when remote repository is unrelated')), |
|
3638 | 3638 | ('r', 'rev', [], |
|
3639 | _('a specific remote revision up to which you would like to pull')), | |
|
3639 | _('a remote changeset intended to be added')), | |
|
3640 | 3640 | ] + remoteopts, |
|
3641 | 3641 | _('[-u] [-f] [-r REV]... [-e CMD] [--remotecmd CMD] [SOURCE]')), |
|
3642 | 3642 | "^push": |
|
3643 | 3643 | (push, |
|
3644 | 3644 | [('f', 'force', None, _('force push')), |
|
3645 | 3645 | ('r', 'rev', [], |
|
3646 | _('a specific revision up to which you would like to push')), | |
|
3646 | _('a changeset intended to be included in the destination')), | |
|
3647 | 3647 | ] + remoteopts, |
|
3648 | 3648 | _('[-f] [-r REV]... [-e CMD] [--remotecmd CMD] [DEST]')), |
|
3649 | 3649 | "recover": (recover, []), |
@@ -3674,7 +3674,7 table = { | |||
|
3674 | 3674 | (revert, |
|
3675 | 3675 | [('a', 'all', None, _('revert all changes when no arguments given')), |
|
3676 | 3676 | ('d', 'date', '', _('tipmost revision matching date')), |
|
3677 |
('r', 'rev', '', _('rev |
|
|
3677 | ('r', 'rev', '', _('revert to the specified revision')), | |
|
3678 | 3678 | ('', 'no-backup', None, _('do not save backup copies of files')), |
|
3679 | 3679 | ] + walkopts + dryrunopts, |
|
3680 | 3680 | _('[OPTION]... [-r REV] [NAME]...')), |
@@ -344,7 +344,7 options: | |||
|
344 | 344 | -c --change change made by revision |
|
345 | 345 | -a --text treat all files as text |
|
346 | 346 | -g --git use git extended diff format |
|
347 |
--nodates |
|
|
347 | --nodates omit dates from diff headers | |
|
348 | 348 | -p --show-function show which function each change is in |
|
349 | 349 | --reverse produce a diff that undoes the changes |
|
350 | 350 | -w --ignore-all-space ignore white space when comparing lines |
General Comments 0
You need to be logged in to leave comments.
Login now