jj/cli
Stephen Jennings 6c41b1bef8 revset: add author_date and committer_date revset functions
Author dates and committer dates can be filtered like so:

    committer_date(before:"1 hour ago") # more than 1 hour ago
    committer_date(after:"1 hour ago")  # 1 hour ago or less

A date range can be created by combining revsets. For example, to see any
revisions committed yesterday:

    committer_date(after:"yesterday") & committer_date(before:"today")
2024-08-01 09:04:07 -07:00
..
examples
src revset: add author_date and committer_date revset functions 2024-08-01 09:04:07 -07:00
testing
tests revset: add author_date and committer_date revset functions 2024-08-01 09:04:07 -07:00
build.rs
Cargo.toml
LICENSE