如何从默认分支赶上命名的 Mercurial 分支而不将两者合并为一个?
我在 Mercurial 中有两个分支。
default named
|r1
|r2
|r3 -------- named branch created here.
| |r4
| |r5
| r6 |
| |r7
| |
-----------> | r8 How do I achieve this catch-up?
| |
我想更新默认的命名分支,但我还没有准备好合并分支。我该如何实现这一目标?
编辑:
此外,使用 GUI 进行的操作是什么? 是不是..右键r6,合并...,r8,...然后呢?提交到指定分支?
I have two branches in mercurial..
default named
|r1
|r2
|r3 -------- named branch created here.
| |r4
| |r5
| r6 |
| |r7
| |
-----------> | r8 How do I achieve this catch-up?
| |
I want to update the named branch from default, but I'm not ready to merge the branches yet. How do I achieve this?
Edit:
Additionally, what would the operation be using the GUI?
Is it.. right-click r6, merge with..., r8,... then what? commit to named branch?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
来自您的命名分支的
hg merge default
。hg merge default
from your named branch.