mercurial/commands.py
branchstable
changeset 18464 a2e9fe93d9ea
parent 18458 9354a8c1bded
child 18471 2096e025a728
equal deleted inserted replaced
18463:07771e233cf1 18464:a2e9fe93d9ea
  5864     and cannot be renamed or assigned to a different changeset.
  5864     and cannot be renamed or assigned to a different changeset.
  5865 
  5865 
  5866     Returns 0 on success.
  5866     Returns 0 on success.
  5867     """
  5867     """
  5868     displayer = cmdutil.show_changeset(ui, repo, opts)
  5868     displayer = cmdutil.show_changeset(ui, repo, opts)
  5869     displayer.show(repo[len(repo) - 1])
  5869     displayer.show(repo['tip'])
  5870     displayer.close()
  5870     displayer.close()
  5871 
  5871 
  5872 @command('unbundle',
  5872 @command('unbundle',
  5873     [('u', 'update', None,
  5873     [('u', 'update', None,
  5874      _('update to new branch head if changesets were unbundled'))],
  5874      _('update to new branch head if changesets were unbundled'))],