Consider the following situation: We have the following branches:
- A Which is our old baseline
- B Which is our new baseline
- C Which has new changes developed on top of A
- D Which is developed merging B and C, and conflicts are resolved here
Now, we need to modify and rebase some commits on D. But, because rebase uses the commits per se (and not the end result of the resolve), it looks like we have to resolve the conflicts again.
Is there any way to (re)work on commits of D without need to solve the same conflicts?