I did the following on a random git repository:
git bisect start
git bisect good HEAD~100
git bisect bad // Should just point to the current HEAD, right?
I would have expected a range of 100 commits to be tested by git, however what I got was 1000 commits (10x more). I am guessing there has to be a simple explanation for this, but I can't seem to find anything.
Edit: maybe I was not clear enough. I got 1000 commits in the range to be tested with git bisect. That would equate to roughly 9-10 commits to be tested.
What would the cause of this be?