I need to remove code from my master branch...
Currently, it looks like this:
A->B->C->D->E->F
and i want to remove commits B to E, turning it to:
A->F
I tried to revert back to A and cherry pick F but it won't allow me to push because the tip of the branch is behind the remote counterpart...
How can I do this?