Updated: 27 August 2023
Start a bisect session
git bisect start
Pass git a commit where the problem is apparent
git bisect bad HEAD
and a good commit, sometime earlier
git bisect good fcd61994
Inspect / test the code, then inform git
git bisect good # or
git bisect bad
Finish the session
git bisect reset