【发布时间】:2013-02-28 19:21:13
【问题描述】:
我读过这个问题:How to move some changeset to a new branch in mercurial
但我的问题略有不同。我有的是这样的:
NULL -> 1 -> 2 -> 3 -> 4 -> etc #default
\
10 #default (new head without parent)
\
11 -> 12 -> 13 -> 14 #new-empty-branch
当然,我应该从一开始就在 de new-empty-branch 中提交修订版 10,但我没有,所以现在我想将修订版 10 从默认分支移动到 #new-empty-branch。不幸的是,所有的修订都已经推送了。
这就是我想要的结果:
NULL -> 1 -> 2 -> 3 -> 4 -> etc #default
\
10 -> 11 -> 12 -> 13 -> 14 #new-empty-branch
有什么想法吗?
【问题讨论】: