bisect-rust
bisect-rust copied to clipboard
Inconsistency with git-bisect scripts
Quoting the bisect manual:
If you have a script that can tell if the current source code is good or bad, you can bisect by issuing the command:
$ git bisect run my_script arguments
Note that the script (my_script in the above example) should exit with code 0 if the current source code is good/old, and exit with a code between 1 and 127 (inclusive), except 125, if the current source code is bad/new.
This tool reverses the meaning.