Suppose following git history with mainline A and already merged branch B.
b1 b2
-----•------•--- B
/ \
•------•----•--------------•-------• A
a1 a2 a3 a4 a5
a4 is a merge commit w/ commit message merge "merge B into A.
Is it possible to to change the history into following.
b1' b2'
•-----•-----•-----•-----•-----• A
a1 a2 a3 a5
edit: I don't want to change the commit date if possible.