假设我的远程起源有3个分支:master(HEAD),branch_A,分支B.
我按下了branch_A和branch_B的推送
git push origin <last commit SHA of master>:branch_A
git push origin <last commit SHA of master>:branch_B
现在我的所有三个分支处于相同的状态,所有提交的所有更改都会在 master 中的最后一次提交中完成,这是我不想要的。我只想在 master 的最后一次提交中只进行更改。我应该在上述命令之前使用follow命令,如How can I pushing specific commit to a remote, and not the previous commits?
git rebase -i
但我没有这样做。如何将branch_A和branch_B重置为推送命令之前的状态?