bisect-rust icon indicating copy to clipboard operation
bisect-rust copied to clipboard

Inconsistency with git-bisect scripts

Open est31 opened this issue 8 years ago • 0 comments

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.

est31 avatar May 08 '17 07:05 est31