I have branch say, develop which has following commits :-
Commit A -> Commit B -> Commit C -> Commit D -> Commit E (where, E being the latest commit in this branch)
Let us suppose that I want to merge the changes from this branch (develop) into another branch, master from commit id C to E (i.e. C, D and E). Can I use the cherry-pick method by picking up individual commits starting from C to E or if there is any better way to achieve it in doing merge in one shot.
Please advise, Thanks