I have the following situation:
- I created a
clone(Y) from a main repository(X), because there were many people working on Y we didn't do anyrebasebut onlymerges. When we want to deliver(push) Y to X we would like to do arebasein order to have things nice and clean
The problem is that when doing rebase we are asked to do all the merges that we already did in the previous merge steps. Is there a solution to this, beside the one that means actually re-doing the merges?
I expected it to be pretty straightforward since we already solved the conflicting merges.