我正在尝试使用 git bisect
我确定了错误的提交是:
2ac4ac0a46d902235a51216b24257a977877979a at 19 Oct 2016
我发现的第一个好的提交是:
6a1d1ec5599d011a75df18075feb1819f1ad8877 at 9 Jan 2016
所以我跑:
> git bisect start
> git bisect good 6a1d1ec5599d011a75df18075feb1819f1ad8877
> git bisect bad 2ac4ac0a46d902235a51216b24257a977877979a
Bisecting: 3639 revisions left to test after this (roughly 12 steps)
[51450765b77e07b853b7efd0799aaeb2fbb5a0ea] only show canvas-player controls when not playing && controls = true
现在的问题是 bisect 工具做出的第一个猜测是:
51450765b77e07b853b7efd0799aaeb2fbb5a0ea at 21 May 2015
这超出了最初的 2 个提交日期。怎么会这样?