Mercurial > public > mercurial-scm > hg
diff mercurial/revset.py @ 16647:14913fcb30c6
bisect: track the current changeset (issue3382)
Introduce a new revset feature, bisect(current), that identifies
the changeset currently being bisected.
author | Bryan O'Sullivan <bryano@fb.com> |
---|---|
date | Tue, 08 May 2012 15:29:09 -0700 |
parents | 592e0beee8b0 |
children | b6081c2c4647 |
line wrap: on
line diff
--- a/mercurial/revset.py Fri May 04 15:56:45 2012 -0400 +++ b/mercurial/revset.py Tue May 08 15:29:09 2012 -0700 @@ -289,6 +289,7 @@ - ``pruned`` : csets that are goods, bads or skipped - ``untested`` : csets whose fate is yet unknown - ``ignored`` : csets ignored due to DAG topology + - ``current`` : the cset currently being bisected """ status = getstring(x, _("bisect requires a string")).lower() state = set(hbisect.get(repo, status))