comparison mercurial/commands.py @ 36635:4de15c54e59f

clone: updates the help text for hg clone -{r,b} (issue5654) Differential Revision: https://phab.mercurial-scm.org/D2095
author Sangeet Kumar Mishra <mail2sangeetmishra@gmail.com>
date Thu, 08 Feb 2018 23:27:24 +0530
parents aa3294027936
children c6061cadb400
comparison
equal deleted inserted replaced
36634:d549cfeb5bf7 36635:4de15c54e59f
1324 @command('^clone', 1324 @command('^clone',
1325 [('U', 'noupdate', None, _('the clone will include an empty working ' 1325 [('U', 'noupdate', None, _('the clone will include an empty working '
1326 'directory (only a repository)')), 1326 'directory (only a repository)')),
1327 ('u', 'updaterev', '', _('revision, tag, or branch to check out'), 1327 ('u', 'updaterev', '', _('revision, tag, or branch to check out'),
1328 _('REV')), 1328 _('REV')),
1329 ('r', 'rev', [], _('include the specified changeset'), _('REV')), 1329 ('r', 'rev', [], _('do not clone everything, but include this changeset'
1330 ('b', 'branch', [], _('clone only the specified branch'), _('BRANCH')), 1330 ' and its ancestors'), _('REV')),
1331 ('b', 'branch', [], _('do not clone everything, but include this branch\'s'
1332 ' changesets and their ancestors'), _('BRANCH')),
1331 ('', 'pull', None, _('use pull protocol to copy metadata')), 1333 ('', 'pull', None, _('use pull protocol to copy metadata')),
1332 ('', 'uncompressed', None, 1334 ('', 'uncompressed', None,
1333 _('an alias to --stream (DEPRECATED)')), 1335 _('an alias to --stream (DEPRECATED)')),
1334 ('', 'stream', None, 1336 ('', 'stream', None,
1335 _('clone with minimal data processing')), 1337 _('clone with minimal data processing')),