I had a branch that I merged into master. Then we've merged other things into master after that. So we now have this state in master
------------------------------
stuff added to master recently
------------------------------
my branch merged into master
------------------------------
old stuff in master
------------------------------
I want to remove my merge from master and leave all else intact so that I get the following state in master
------------------------------
stuff added to master recently
------------------------------
old stuff in master
------------------------------
How do I do that?