##// END OF EJS Templates
base-revsets: use an author that actually exercises a lot of changesets...
Raphaël Gomès -
r52499:55e7784e default
parent child Browse files
Show More
@@ -46,8 +46,8 b' p1()'
46 46 # Used in revision c1546d7400ef
47 47 min(0::)
48 48 # Used in revision 546fa6576815
49 author(lmoscovicz) or author(olivia)
50 author(olivia) or author(lmoscovicz)
49 author(lmoscovicz) or author("pierre-yves")
50 author("pierre-yves") or author(lmoscovicz)
51 51 # Used in revision 9bfe68357c01
52 52 public() and id("d82e2223f132")
53 53 # Used in revision ba89f7b542c9
@@ -100,7 +100,7 b' draft()'
100 100 draft() and ::tip
101 101 ::tip and draft()
102 102 author(lmoscovicz)
103 author(olivia)
103 author("pierre-yves")
104 104 ::p1(p1(tip))::
105 105 public()
106 106 :10000 and public()
@@ -130,7 +130,7 b' roots((:42) + (tip~42:))'
130 130 head()
131 131 head() - public()
132 132 draft() and head()
133 head() and author("olivia")
133 head() and author("pierre-yves")
134 134
135 135 # testing the mutable phases set
136 136 draft()
@@ -25,9 +25,9 b' draft() and ::tip'
25 25 0::tip
26 26 roots(0::tip)
27 27 author(lmoscovicz)
28 author(olivia)
29 author(lmoscovicz) or author(olivia)
30 author(olivia) or author(lmoscovicz)
28 author("pierre-yves")
29 author(lmoscovicz) or author("pierre-yves")
30 author("pierre-yves") or author(lmoscovicz)
31 31 tip:0
32 32 0::
33 33 # those two `roots(...)` inputs are close to what phase movement use.
General Comments 0
You need to be logged in to leave comments. Login now