Replies: 1 comment 3 replies
-
That's actually how it used to behave. It changed in #3410 and there's some discussion there. I was actually surprised myself when |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
log <path>
restricts the list of commits to ones that modified the specified path(s). If-r
is also given, the effect seems to be equivalent to appending& file(<path>)
to the explicit revset argument.But if
-r
is not provided, it appears that the revset used is justfile(<path>)
. Why isn't it<revsets.log> & file(<path>)
, for consistency (and convenience)? (And of course the user could still uselog <path> -r ::
to get the current behavior.)Relatedly, is there a way to explicitly use my configured
revsets.log
inside of a revset expression?Beta Was this translation helpful? Give feedback.
All reactions