I am trying to use git bisect
.
My good commit is
commit 7ce16e99296de1d559e7317adac6bc13a727ae2b
Author: ...
Date: Tue Jun 22 14:52:54 2021 +0800
And my bad commit is
commit 8acb2b2ed0eb1576e7961149bde27cb1568ec39e
Author: ...
Date: Mon Sep 27 13:50:37 2021 +0800
So I think when git bisect starts, it will give me a commit between Jun 22 2021 and Sep 27 2021.
However, it gives me a rather old one
commit 2f3971bcae715839ee8d2aea837a4bf4ce31c815
Merge: 2d32bba 5777bb6
Author: ...
Date: Tue Dec 8 11:25:04 2020 +0800
I think it may be because of some merge issue, but why, and how can I solve this?