comparison mercurial/commands.py @ 20156:28fe5abc906f

merge with stable
author Matt Mackall <mpm@selenic.com>
date Sun, 01 Dec 2013 14:10:53 -0600
parents 1df77035c814 734ff413eb7e
children 04036798ebed
comparison
equal deleted inserted replaced
20155:21dafd8546d1 20156:28fe5abc906f
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