Mercurial 是否支持默认分支的别名?

发布于 2025-01-07 13:58:30 字数 158 浏览 0 评论 0原文

Mercurial 中是否有一种方法可以为默认分支提供备用名称,同时仍然让 default 像以前一样工作?即,我可以进行设置,以便 hg update mainhg update default 将我带到默认分支吗?

Is there a way in mercurial to give an alternate name to the default branch while still having default work as before? I.e., Can I set things up so that either hg update main or hg update default will bring me to the default branch?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

小嗲 2025-01-14 13:58:30

您可以在默认分支上放置一个名为“main”的书签,如下所示:

hg bookmark --rev default main

该书签将从默认分支上的“最尖端”变更集开始。当您提交(包括提交合并)时,书签将跟随该书签。

一般来说,在您积极的开发工作中,请尝试继续使用“默认”名称。

You could hand a bookmark named 'main' on the default branch like:

hg bookmark --rev default main

That bookmark will start out on the "most tipward" changeset on the default branch. And the bookmark will follow that along when you commit (including committing merges).

In general though try to keep using the name 'default' for your active development work.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文