mercurial/commands.py
changeset 6367 51984a2413f2
parent 6364 b22b39059722
child 6369 53912d30ac40
equal deleted inserted replaced
6366:07c3cd695b48 6367:51984a2413f2
  2718 
  2718 
  2719     The tip revision (usually just called the tip) is the most
  2719     The tip revision (usually just called the tip) is the most
  2720     recently added changeset in the repository, the most recently
  2720     recently added changeset in the repository, the most recently
  2721     changed head.
  2721     changed head.
  2722 
  2722 
  2723     If you have just made a commit, that commit will be the
  2723     If you have just made a commit, that commit will be the tip. If
  2724     tip. Alternately, if you have just pulled changes from another
  2724     you have just pulled changes from another repository, the tip of
  2725     repository, the tip of that repository becomes the current tip.
  2725     that repository becomes the current tip. The "tip" tag is special
  2726     The "tip" tag is special and can not be renamed or assigned to a
  2726     and cannot be renamed or assigned to a different changeset.
  2727     different changeset.
       
  2728     """
  2727     """
  2729     cmdutil.show_changeset(ui, repo, opts).show(nullrev+repo.changelog.count())
  2728     cmdutil.show_changeset(ui, repo, opts).show(nullrev+repo.changelog.count())
  2730 
  2729 
  2731 def unbundle(ui, repo, fname1, *fnames, **opts):
  2730 def unbundle(ui, repo, fname1, *fnames, **opts):
  2732     """apply one or more changegroup files
  2731     """apply one or more changegroup files