Mercurial 是否支持默认分支的别名?
Mercurial 中是否有一种方法可以为默认分支提供备用名称,同时仍然让 default
像以前一样工作?即,我可以进行设置,以便 hg update main
或 hg 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以在默认分支上放置一个名为“main”的书签,如下所示:
该书签将从默认分支上的“最尖端”变更集开始。当您提交(包括提交合并)时,书签将跟随该书签。
一般来说,在您积极的开发工作中,请尝试继续使用“默认”名称。
You could hand a bookmark named 'main' on the default branch like:
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.