I need to update current branch, but do not want to destroy git-flow, therefore I need a partial merge. I do not like cherry-pick and rebase is no option..
How to merge the difference from B-A into C ?
The question is not about how to merge in general. I would like to know.. is it possible to only merge the difference from A to B into C. If you do some big changes in C like deleting files, modifying a lot of files. Then you do not want to resolve all possible merge-conflicts again, which are caused from A. My only focus is on the commits between A and B.
I was thinking about sth. like: git merge A..B C
If it is not possible please tell me so, cause I did not find an answer yet.
                       - o D
                     /   |
   B o    o C     B o    o C
     |    |         |    |
     |    o         |    o
     |   /          |   /
   A o -          A o -
     |              |
