我有一个tests.sh
文件。
该文件仅包含exit 0
或exit 1
。0
对于前几个提交,1
剩下的(我认为)表示前几个提交是good
,其余的是bad
.
我在跑步$ git bisect run ./tests.sh
。但是它告诉我我需要从git bisect start
.
$ git bisect run ./tests.sh
error: You need to start by "git bisect start".
You then need to give me at least one good|old and bad|new revision.
You can use "git bisect good|old" and "git bisect bad|new" for that.
我试过git bisect start
先跑步,然后说这HEAD
是不好的,但没有成功。
我在这里做错了什么?