From 4dc4ab39a6f5a17be484a99fa595ba634a09c65c Mon Sep 17 00:00:00 2001 From: Marty Oehme Date: Thu, 15 May 2025 11:47:01 +0200 Subject: [PATCH] jj: Add alias to show WIP commits. `jlfw` will quickly list every commit that contains 'WIP:'. Quicker version of `jlf 'WIP:'`. --- vcs/jj/config/sh/alias.d/jj.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/vcs/jj/config/sh/alias.d/jj.sh b/vcs/jj/config/sh/alias.d/jj.sh index 60f8025..8a3d48e 100644 --- a/vcs/jj/config/sh/alias.d/jj.sh +++ b/vcs/jj/config/sh/alias.d/jj.sh @@ -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)'"