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 |