From 4dd487a08ee6dbdd2f4a65b9bad15feea66bd773 Mon Sep 17 00:00:00 2001 From: Matthew Ryan Dillon Date: Mon, 29 Jul 2024 17:36:53 -0400 Subject: [PATCH] new: jj config --- .../private_jj/config.toml | 21 +++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 home/private_Library/private_Application Support/private_jj/config.toml diff --git a/home/private_Library/private_Application Support/private_jj/config.toml b/home/private_Library/private_Application Support/private_jj/config.toml new file mode 100644 index 0000000..f693c7e --- /dev/null +++ b/home/private_Library/private_Application Support/private_jj/config.toml @@ -0,0 +1,21 @@ +[user] +name = "Matthew Ryan Dillon" +email = "matthewrdillon@gmail.com" + +[git] +push-branch-prefix = "thermokarst/jj-" + +[revsets] +log = "@ | bases | branches | curbranch::@ | @::nextbranch | downstream(@, branchesandheads)" + +[revset-aliases] +'bases' = 'main' +'downstream(x,y)' = '(x::y) & y' +'branches' = 'downstream(trunk(), branches()) & mine()' +'branchesandheads' = 'branches | (heads(trunk()::) & mine())' +'curbranch' = 'latest(branches::@- & branches)' +'nextbranch' = 'roots(@:: & branchesandheads)' + +[ui] +default-command = ["log", "--reversed"] +diff.format = "git"