标签: git git-rebase amend
master ---A---B \ feature1 C
有两个分支,如上所述。在提交C之后,我使用“git commit --amend”修改了版本B.修订版C是否可以获取我对B所做的更改?
答案 0 :(得分:4)
这将重播提交b中的c更改:
git checkout feature1 git rebase b
或:
git checkout feature1 git rebase master