I am looking for a way to cherry pick a branch and merge it into another branch. The default behavior of cherry pick is to pick a particular commit, however, I am looking for picking changes that were part of the branch.
Please have a look at the below details for a better explanation.
Let suppose we have 5 branches I-e B1, B2, B3, B4, and B5. Step 1: B1 is merged into B2, and then deleted B1. Step 2: B3 is merged into B4, and then deleted B3. Step 3: B2 is merged into B4, and then deleted B2. Step 4: Now I have B4 and B5, where B4 contains all the changes done in B1, B2, and B3. Now I want to cherry Pick B2 changes (I-e Branch B2) from B4 and merge them into B5.
Do we have any way to achieve this?
Kind Regards
Can anybody help me