Mercurial > hg
comparison tests/test-revset.t @ 30783:931a60880df4
revset: add regular expression support to 'desc'
This is a case insensitive predicate like 'author', so it conforms to the
existing behavior of performing a case insensitive regex.
author | Matt Harbison <matt_harbison@yahoo.com> |
---|---|
date | Sat, 07 Jan 2017 21:26:32 -0500 |
parents | db38cfc7c29d |
children | d389f19f14aa |
comparison
equal
deleted
inserted
replaced
30782:db38cfc7c29d | 30783:931a60880df4 |
---|---|
910 1 | 910 1 |
911 3 | 911 3 |
912 5 | 912 5 |
913 $ log 'desc(B)' | 913 $ log 'desc(B)' |
914 5 | 914 5 |
915 $ hg log -r 'desc(r"re:S?u")' --template "{rev} {desc|firstline}\n" | |
916 5 5 bug | |
917 6 6 issue619 | |
915 $ log 'descendants(2 or 3)' | 918 $ log 'descendants(2 or 3)' |
916 2 | 919 2 |
917 3 | 920 3 |
918 4 | 921 4 |
919 5 | 922 5 |