I have 3 commits: a, b & c
I need to remove the changes introduced by b, such that just a & c are left
What I've done so far is create a new branch from a, and then cherry picked in c
However, when I merged with the master it merged back in b
How do I avoid this merge?