commit 4e7b3ae75344e7a30179345ee99627b4db2122d5
parent 756c42ef538e4cbbb1203f050a21cf9cace670c8
Author: Chris Bracken <chris@bracken.jp>
Date: Tue, 12 May 2026 14:47:08 +0900
jj: update log aliases to be closer to default
ll still logs one-line format but reorders its log fields to match the
ordering in the default jj log.
Diffstat:
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/.config/jj/config.toml b/.config/jj/config.toml
@@ -5,7 +5,7 @@ name = "Chris Bracken"
email = "chris@bracken.jp"
[aliases]
-l = ["log", "-T", "fmt_lol", "-r", "ancestors(trunk() | mutable(), 3)"]
+l = ["log"]
ll = ["log", "-T", "fmt_lol", "-r", "::"]
[ui]
@@ -16,9 +16,9 @@ revsets-use-glob-by-default = true
# Define the content format.
fmt_lol_content = '''
change_id.shortest(8) ++ " " ++
-commit_id.shortest(8) ++ " " ++
+label("author", author.email()) ++ " " ++
label("timestamp", committer.timestamp().local().format("%Y-%m-%d %H:%M:%S")) ++ " " ++
-label("author", author.name()) ++ " " ++
+commit_id.shortest(8) ++ " " ++
separate(" ",
bookmarks,
tags,