显然我已经将最后几周的提交检查到了分支机构。除了对一个文件的更改之外,我想将所有内容提交到主干。我该怎么办?
答案 0 :(得分:6)
当您与Mercurial谈论命名分支时,您正在谈论变更集的永久属性。变更集不能位于不同的分支上,并且仍然是相同的变更集。您可以(如@Matt Ball)建议将该分支的结果合并为默认值:
hg update default
hg merge thebranchname
或者你可以通过疯狂的,破坏历史的扭曲来假装这些变化没有在分支上完成(如@Rudi详细信息(对不起))。
现在只需合并,将来考虑使用书签,匿名分支或单独的克隆,对于你不想立即推送的工作 - 这些都不会对变更集进行永久性注释。
答案 1 :(得分:1)
如果您没有推出新分支的任何变更集,并且分支中没有合并,则可以使用mq扩展名将in trunk不需要的变更集移动到分支的顶端。
$EDITOR ~/.hgrc
[extensions]
mq =
«save+quit»
# import all revisions up to the unwanted rev into a patch queue
hg qimport -r$BRANCH_TIP_REVISION:$IN_TRUNK_UNWANTED_REVISION
# edit the order of the patches, so that the unwanted patch is the last patch
$EDITOR .hg/patches/series
«Move the in trunk unwanted patch to the last line of the file»
# Variant 1: don't change the branch
hg qpush -a # apply all patches
hg qfinish -a # finish all patches to regular hg changesets
hg log -l2 # find out the revision number of the latest revision you want in trunk
hg up -r trunk # checkout trunk
hg merge -r $LATEST_WANTED_REVISION_NUMBER # merge only the wanted changesets
# Variant 2: *All* patches are on the new branch, and
# you want only the differing changeset on the new branch
hg up -r trunk # move the working copy to trunk
hg qpush -a # apply all patches
hg qpop # unapply the unwanted one
hg qfinish # finish the applied patches
hg branch $OLD_BRANCH_NAME # switch the working copy to the new branch
# if there is already another branch of this name,
# you need to checkout the other branch, apply the
# patch and merge trunk into that branch afterwards.
hg qpush # apply the branch-specific patch
hg qfinish -a # finish the patch