equal
deleted
inserted
replaced
554 hg bisect --skip |
554 hg bisect --skip |
555 hg bisect --skip 23 |
555 hg bisect --skip 23 |
556 |
556 |
557 - skip all revisions that do not touch directories ``foo`` or ``bar``:: |
557 - skip all revisions that do not touch directories ``foo`` or ``bar``:: |
558 |
558 |
559 hg bisect --skip '!( file("path:foo") & file("path:bar") )' |
559 hg bisect --skip "!( file('path:foo') & file('path:bar') )" |
560 |
560 |
561 - forget the current bisection:: |
561 - forget the current bisection:: |
562 |
562 |
563 hg bisect --reset |
563 hg bisect --reset |
564 |
564 |
566 revision:: |
566 revision:: |
567 |
567 |
568 hg bisect --reset |
568 hg bisect --reset |
569 hg bisect --bad 34 |
569 hg bisect --bad 34 |
570 hg bisect --good 12 |
570 hg bisect --good 12 |
571 hg bisect --command 'make && make tests' |
571 hg bisect --command "make && make tests" |
572 |
572 |
573 - see all changesets whose states are already known in the current |
573 - see all changesets whose states are already known in the current |
574 bisection:: |
574 bisection:: |
575 |
575 |
576 hg log -r "bisect(pruned)" |
576 hg log -r "bisect(pruned)" |