I would like to merge into my branch only a specific list of commits [A, C, E].
The solution I often see would be to do git cherry-pick A^..E but it would also commit Band D that I don't want. Is there a way to specify the exact list of commits I want ?
 
    