mercurial/commands.py
changeset 31798 2b130e26c3a4
parent 31797 54b1af732415
child 31822 fde4822b0102
equal deleted inserted replaced
31797:54b1af732415 31798:2b130e26c3a4
  5247 @command('unbundle',
  5247 @command('unbundle',
  5248     [('u', 'update', None,
  5248     [('u', 'update', None,
  5249      _('update to new branch head if changesets were unbundled'))],
  5249      _('update to new branch head if changesets were unbundled'))],
  5250     _('[-u] FILE...'))
  5250     _('[-u] FILE...'))
  5251 def unbundle(ui, repo, fname1, *fnames, **opts):
  5251 def unbundle(ui, repo, fname1, *fnames, **opts):
  5252     """apply one or more changegroup files
  5252     """apply one or more bundle files
  5253 
  5253 
  5254     Apply one or more compressed changegroup files generated by the
  5254     Apply one or more bundle files generated by :hg:`bundle`.
  5255     bundle command.
       
  5256 
  5255 
  5257     Returns 0 on success, 1 if an update has unresolved files.
  5256     Returns 0 on success, 1 if an update has unresolved files.
  5258     """
  5257     """
  5259     fnames = (fname1,) + fnames
  5258     fnames = (fname1,) + fnames
  5260 
  5259