mercurial/commands.py
changeset 27292 14a83e8e1b88
parent 27266 4dccc37b87bd
child 27317 5091c013fd1a
equal deleted inserted replaced
27291:a18328aad48c 27292:14a83e8e1b88
  1421     return cmdutil.cat(ui, repo, ctx, m, '', **opts)
  1421     return cmdutil.cat(ui, repo, ctx, m, '', **opts)
  1422 
  1422 
  1423 @command('^clone',
  1423 @command('^clone',
  1424     [('U', 'noupdate', None, _('the clone will include an empty working '
  1424     [('U', 'noupdate', None, _('the clone will include an empty working '
  1425                                'directory (only a repository)')),
  1425                                'directory (only a repository)')),
  1426     ('u', 'updaterev', '', _('revision, tag or branch to check out'), _('REV')),
  1426     ('u', 'updaterev', '', _('revision, tag, or branch to check out'),
       
  1427         _('REV')),
  1427     ('r', 'rev', [], _('include the specified changeset'), _('REV')),
  1428     ('r', 'rev', [], _('include the specified changeset'), _('REV')),
  1428     ('b', 'branch', [], _('clone only the specified branch'), _('BRANCH')),
  1429     ('b', 'branch', [], _('clone only the specified branch'), _('BRANCH')),
  1429     ('', 'pull', None, _('use pull protocol to copy metadata')),
  1430     ('', 'pull', None, _('use pull protocol to copy metadata')),
  1430     ('', 'uncompressed', None, _('use uncompressed transfer (fast over LAN)')),
  1431     ('', 'uncompressed', None, _('use uncompressed transfer (fast over LAN)')),
  1431     ] + remoteopts,
  1432     ] + remoteopts,