equal
deleted
inserted
replaced
537 |
537 |
538 .. container:: verbose |
538 .. container:: verbose |
539 |
539 |
540 Some examples: |
540 Some examples: |
541 |
541 |
542 - start a bisection with known bad revision 12, and good revision 34:: |
542 - start a bisection with known bad revision 34, and good revision 12:: |
543 |
543 |
544 hg bisect --bad 34 |
544 hg bisect --bad 34 |
545 hg bisect --good 12 |
545 hg bisect --good 12 |
546 |
546 |
547 - advance the current bisection by marking current revision as good or |
547 - advance the current bisection by marking current revision as good or |
584 |
584 |
585 - see all changesets that took part in the current bisection:: |
585 - see all changesets that took part in the current bisection:: |
586 |
586 |
587 hg log -r "bisect(range)" |
587 hg log -r "bisect(range)" |
588 |
588 |
589 - with the graphlog extension, you can even get a nice graph:: |
589 - you can even get a nice graph:: |
590 |
590 |
591 hg log --graph -r "bisect(range)" |
591 hg log --graph -r "bisect(range)" |
592 |
592 |
593 See :hg:`help revsets` for more about the `bisect()` keyword. |
593 See :hg:`help revsets` for more about the `bisect()` keyword. |
594 |
594 |