jj: Add alias to show WIP commits.

`jlfw` will quickly list every commit that contains 'WIP:'. Quicker
version of `jlf 'WIP:'`.
This commit is contained in:
Marty Oehme 2025-05-15 11:47:01 +02:00
parent 7d9a85ec48
commit 4dc4ab39a6
Signed by: Marty
GPG key ID: 4E535BC19C61886E

View file

@ -65,6 +65,7 @@ jlof() {
jloof() {
jj log --patch -r "description(substring-i:\"$*\")"
}
alias jlfw='jj log -r "description(substring-i:\"WIP:\")"'
# show branches (i.e. head commits) w a couple previous commits
alias jh="jj log -r 'ancestors(heads(all()), 3)'"