- Have 2 branches (say A & B) merged the changes from A to B (executed git pull . A in branch B). There was a merge commit that happened.
- Now had to revert that merge on B (so did git revert -m)
- So due to revert, the commits from A are reverted back in B
- There are other commits on B done later on
Now when I again try to pull from A to B, those changes that were reverted are not being pulled. How do I pull those changes as well?