git-bisect: allow bisecting with only one bad commit.
authorJunio C Hamano <junkio@cox.net>
Fri, 6 Apr 2007 06:27:44 +0000 (23:27 -0700)
committerJunio C Hamano <junkio@cox.net>
Sat, 7 Apr 2007 00:55:57 +0000 (17:55 -0700)
This allows you to say:

git bisect start
git bisect bad $bad
git bisect next

to start bisection without knowing a good commit. This would
have you try a commit that is half-way since the beginning of
the history, which is rather wasteful if you already know a good
commit, but if you don't (or your history is short enough that
you do not care), there is no reason not to allow this.

Signed-off-by: Junio C Hamano <junkio@cox.net>
No differences found