如何在本地存储库中合并2个分支

时间:2010-05-06 04:57:16

标签: mercurial merge

我的hg存储库中有2个分支: 1.默认 2.新功能

我尝试过这样做:https://www.mercurial-scm.org/wiki/NamedBranches, 我通过'hg update -c default'切换回默认值 但是如何将'new-feature'中的提交合并为'default'。

我做了“hg pull new-feature”,它说“找不到存储库新功能”!

谢谢。

1 个答案:

答案 0 :(得分:3)

进入default分支(hg update default)后,请执行以下操作:

hg merge new-feature

此命令将合并new-feature上的default分支。如果有任何冲突,Mercurial会告诉你。