jj: Add raw log command alias

Added `jlr` which, contrary to all the other jj log commands simply
gives quicker access to the actual raw `log` command for custom
operations.
This commit is contained in:
Marty Oehme 2025-10-13 17:52:48 +02:00
parent 24120f55b2
commit 0ce2c1b7da
Signed by: Marty
GPG key ID: 4E535BC19C61886E

View file

@ -55,6 +55,7 @@ alias jlo="jj log --summary -T builtin_log_compact_full_description -r 'recent()
alias JLO="jj log --summary -T builtin_log_compact_full_description -r 'all()'"
alias jloo="jj log --patch -r 'recent()'"
alias JLOO="jj log --patch -r 'all()'"
alias jlr="jj log" # 'raw' log mode for custom opts
alias jol="jj op log"
jlf() {
jj log -r "description(substring-i:\"$*\")"