Mercurial > hg-stable
changeset 51631:55e7784eb3bc
base-revsets: use an author that actually exercises a lot of changesets
This was caught in my big find-and-replace: d4ba4d51f85f.
The point of `base-revsets` is to give revsets that will give a good coverage
of the repository. Using Pierre-Yves as the second largest committer
(in terms of number of changesets) seems like a good idea.
author | Raphaël Gomès <rgomes@octobus.net> |
---|---|
date | Tue, 16 Apr 2024 09:51:11 +0200 |
parents | e4b9f8a74d5f |
children | a4b3b8dee0a8 |
files | contrib/all-revsets.txt contrib/base-revsets.txt |
diffstat | 2 files changed, 7 insertions(+), 7 deletions(-) [+] |
line wrap: on
line diff
--- a/contrib/all-revsets.txt Tue Apr 16 17:21:37 2024 +0100 +++ b/contrib/all-revsets.txt Tue Apr 16 09:51:11 2024 +0200 @@ -46,8 +46,8 @@ # Used in revision c1546d7400ef min(0::) # Used in revision 546fa6576815 -author(lmoscovicz) or author(olivia) -author(olivia) or author(lmoscovicz) +author(lmoscovicz) or author("pierre-yves") +author("pierre-yves") or author(lmoscovicz) # Used in revision 9bfe68357c01 public() and id("d82e2223f132") # Used in revision ba89f7b542c9 @@ -100,7 +100,7 @@ draft() and ::tip ::tip and draft() author(lmoscovicz) -author(olivia) +author("pierre-yves") ::p1(p1(tip)):: public() :10000 and public() @@ -130,7 +130,7 @@ head() head() - public() draft() and head() -head() and author("olivia") +head() and author("pierre-yves") # testing the mutable phases set draft()
--- a/contrib/base-revsets.txt Tue Apr 16 17:21:37 2024 +0100 +++ b/contrib/base-revsets.txt Tue Apr 16 09:51:11 2024 +0200 @@ -25,9 +25,9 @@ 0::tip roots(0::tip) author(lmoscovicz) -author(olivia) -author(lmoscovicz) or author(olivia) -author(olivia) or author(lmoscovicz) +author("pierre-yves") +author(lmoscovicz) or author("pierre-yves") +author("pierre-yves") or author(lmoscovicz) tip:0 0:: # those two `roots(...)` inputs are close to what phase movement use.