我有两个特性分支branch-1和branch-2。
我需要从Featurebranch-1到Featurebranch-2的更改。
我如何在git rebase中做到这一点?下面是对的吗?
git checkout branch-1
git rebase branch-2 branch-1发布于 2020-11-16 17:30:23
合并这些变化不是更好吗?
git checkout -b branch-1
git merge branch-2如果您想使用重基,那么根据此链接,您可以使用以下命令进行重基:
git checkout -b branch-1
git rebase branch-2https://stackoverflow.com/questions/64862509
复制相似问题