git bisect log
Displays the recorded steps of a Git bisect session
This command is useful when you want to review the series of commits and decisions you marked as good or bad during a bisect run so you can retrace how Git narrowed down the faulty change.
It prints out a chronological list of each commit hash tested and its verdict ("good" or "bad") from the ongoing bisect session, and this subcommand doesn’t take any additional flags or parameters.
For related workflows, you can start a bisection with git bisect start, mark commits using git bisect good and git bisect bad, reset the session with git bisect reset, or replay a saved bisect history with git bisect replay. You can also combine bisect with git bisect run <script> to automate the testing process.
Related commands