I now encounter a problem when I pull a remote branch.
Once I resolved all in case of the conflict, I have to commit all their changes.
So that once I create merge request, it includes all of them.
Thus it's hard to review. I just want to have only my commit at the moment.
How would you resolve those conflict in order to make a merge request easier to be reviewed?
I got more question as below:
Let's say I got 2 branches: A has commits (a, b) B has commits (c, d). I also have created the merge requests (MR) (MR-A, MR-B) to master. So that MR-A has (a, b) and MR-B has (c, d) commits inside. But if I am at the A branch then I rebase the branch B so that MR-A has (a, b, c, d) commits while MR-B also has (c, d). Finally I merge MR-A to master. However the MR-B still has (c, d)
And the question is: How could I remove the c, d from MR-B?