##// END OF EJS Templates
revsetbenchmark: add a rebase-related revset to the benchmark list
Pierre-Yves David -
r22557:ace83201 default
parent child Browse files
Show More
@@ -1,30 +1,32
1 1 all()
2 2 draft()
3 3 ::tip
4 4 draft() and ::tip
5 5 ::tip and draft()
6 6 0::tip
7 7 roots(0::tip)
8 8 author(lmoscovicz)
9 9 author(mpm)
10 10 author(lmoscovicz) or author(mpm)
11 11 author(mpm) or author(lmoscovicz)
12 12 tip:0
13 13 max(tip:0)
14 14 min(0:tip)
15 15 0::
16 16 min(0::)
17 17 # those two `roots(...)` inputs are close to what phase movement use.
18 18 roots((tip~100::) - (tip~100::tip))
19 19 roots((0::) - (0::tip))
20 20 ::p1(p1(tip))::
21 21 public()
22 22 :10000 and public()
23 23 draft()
24 24 :10000 and draft()
25 25 max(::(tip~20) - obsolete())
26 26 roots((0:tip)::)
27 27 (not public() - obsolete())
28 28 (_intlist('20000\x0020001')) and merge()
29 29 parents(20000)
30 30 (20000::) - (20000)
31 # The one below is used by rebase
32 (children(ancestor(tip~5, tip)) and ::(tip~5))::
General Comments 0
You need to be logged in to leave comments. Login now