...

/

Bisecting: The Session at a High Level

Bisecting: The Session at a High Level

Learn about "bisection" concepts at a higher level.

First, I’ll explain what a git bisect session might look like in the abstract before running through it on the command line in detail.

Scenario

Let’s say you have a set of 100 commits on a master branch:

Not All Commits Shown

To make the graphs legible, I have not shown all 100 commits in a line. Where items have been skipped, I’ve put a pointer indicating that they are being skipped or were skipped. For example, in the above diagram, 48 commits were skipped between A2 and A50, and 50 commits were
...