在 git rebase 期间保持分支结构

问题描述 投票:0回答:1

假设我有一棵树:

A -- B -- C -- D -- E       main
           \
            F -- G -- H     featureA
                  \
                   I        featureB

我正在工作

featureA
并且想要更新到最新的
main
。 如果我
git checkout featureA
随后是
git rebase main
,它不会随之带来
featureB
分支。

这就是我想要的:

A -- B -- C -- D -- E -- F' -- G' -- H'     featureA
                                \
                                 I'         featureB
git rebase
1个回答
0
投票

这必须手工完成:

git rebase main featureA
git rebase G festureB --onto G'
© www.soinside.com 2019 - 2024. All rights reserved.