mercurial/commands.py
changeset 25761 0d37b9b21467
parent 25744 e78a80f8f51e
child 25763 60c791592aa7
equal deleted inserted replaced
25760:648323f41a89 25761:0d37b9b21467
  1419     r = hg.clone(ui, opts, source, dest,
  1419     r = hg.clone(ui, opts, source, dest,
  1420                  pull=opts.get('pull'),
  1420                  pull=opts.get('pull'),
  1421                  stream=opts.get('uncompressed'),
  1421                  stream=opts.get('uncompressed'),
  1422                  rev=opts.get('rev'),
  1422                  rev=opts.get('rev'),
  1423                  update=opts.get('updaterev') or not opts.get('noupdate'),
  1423                  update=opts.get('updaterev') or not opts.get('noupdate'),
  1424                  branch=opts.get('branch'))
  1424                  branch=opts.get('branch'),
       
  1425                  shareopts=opts.get('shareopts'))
  1425 
  1426 
  1426     return r is None
  1427     return r is None
  1427 
  1428 
  1428 @command('^commit|ci',
  1429 @command('^commit|ci',
  1429     [('A', 'addremove', None,
  1430     [('A', 'addremove', None,