1

git bisect run conveniently bisects a given range of revisions with a script run on each revision whose exit status is used to determine whether it is good, bad or broken.

hg bisect does not seem to offer this automatic ability. I need to manually mark each revision as either good or bad. Is there an extension or script that provides a functionality comparable to git bisect run for mercurial?

Simon
  • 593
  • 2
  • 13

1 Answers1

0

Read hg help bisect by eyes. Note -c CMD option. Use it

Lazy Badger
  • 94,711
  • 9
  • 78
  • 110