contrib/all-revsets.txt
changeset 41273 5409f7ec7850
parent 38712 70a4289896b0
child 41278 41f14e8f335f
equal deleted inserted replaced
41272:71ef4e923886 41273:5409f7ec7850
   137 secret()
   137 secret()
   138 
   138 
   139 # test finding common ancestors
   139 # test finding common ancestors
   140 heads(commonancestors(last(head(), 2)))
   140 heads(commonancestors(last(head(), 2)))
   141 heads(commonancestors(head()))
   141 heads(commonancestors(head()))
       
   142 
       
   143 # more heads testing
       
   144 heads(all())
       
   145 heads(-10000:-1)
       
   146 (-5000:-1000) and heads(-10000:-1)
       
   147 heads(matching(tip, "author"))
       
   148 heads(matching(tip, "author")) and -10000:-1
       
   149 (-10000:-1) and heads(matching(tip, "author"))