Issue2360

Title "hg bisect --skip" should accept revsets
Priority feature Status resolved
Superseder Nosy List djc, hgbot, jruderman, nth10sd
Assigned To Topics

Created on 2010-09-03.00:36:01 by jruderman, last changed 2010-10-09.15:37:11 by mpm.

Messages
msg13585 (view) Author: hgbot Date: 2010-09-08.12:00:06
Fixed by http://hg.intevation.org/mercurial/crew/rev/80399b5b5f13
Dirkjan Ochtman <dirkjan@ochtman.nl>
bisect: allow revsets in addition to single revs (issue2360)
msg13584 (view) Author: djc Date: 2010-09-08.11:50:20
Fixed in 80399b5b5f13 (in crew).
msg13558 (view) Author: jruderman Date: 2010-09-03.00:36:00
$ hg bisect --skip "(1::4) - 4"
abort: unknown revision '(1::4) - 4'

$ hg bisect --skip "descendants(1) - descendants(4)"
abort: unknown revision 'descendants(1) - descendants(4)'!

In the Mozilla repository, we have several ranges of changesets that don't
compile at all (in some configurations).  I'd like to be able to --skip them
as a group.  For example, if rev 1 introduced bustage and rev 4 fixed it,
I'd like to be able to skip the changesets in between.
History
Date User Action Args
2010-10-09 15:37:11mpmsetstatus: testing -> resolved
nosy: djc, nth10sd, hgbot, jruderman
2010-09-08 12:00:06hgbotsetnosy: + hgbot
messages: + msg13585
2010-09-08 11:50:20djcsetstatus: unread -> testing
nosy: + djc
messages: + msg13584
2010-09-03 02:46:00nth10sdsetnosy: + nth10sd
2010-09-03 00:36:01jrudermancreate