Re: find pruned changesets

2023-07-21 Thread Pierre-Yves David
I don't think we have. We should get a `pruned()` revset On 7/21/23 10:52, Mitchell Elutovich wrote: I am struggling to put together a hg log [only] command to show me pruned changesets, is there a way to have a revset based on a textual string/regex of the obsolete description? My current

find pruned changesets

2023-07-21 Thread Mitchell Elutovich
I am struggling to put together a hg log [only] command to show me pruned changesets, is there a way to have a revset based on a textual string/regex of the obsolete description? My current solution is: hg --hidden log -r "obsolete()" | grep -B 6 -A 1 "using prune"