feat(jujutsu): add a different email address for waarp repos

This commit is contained in:
Bruno Carlin 2025-02-11 15:23:05 +01:00
parent 51483c94de
commit 26a0c55008
Signed by: bcarlin
GPG key ID: 8E254EA0FFEB9B6D
2 changed files with 20 additions and 3 deletions

View file

@ -0,0 +1,4 @@
--when.repositories = ["~/Progs/waarp"]
[user]
email = "bruno.carlin@waarp.org"

View file

@ -10,12 +10,17 @@ editor = "nvim"
diff-editor = ["nvim", "-c", "DiffEditor $left $right $output"]
merge-editor = "nvim"
diff.tool = ["delta", "--syntax-theme", "Solarized (dark)", "$left", "$right"]
show-cryptographic-signatures = true
[merge-tools.nvim]
diff-args = ["-d", "$left", "$right"]
merge-args = ["-d", "$left", "$base", "$right", "-c", "wincmd l"]
merge-args = ["-d", "$left", "$output", "$right", "-c", "wincmd l"]
merge-tool-edits-conflict-markers = true
[signing]
behavior = "own"
backend = "gpg"
[colors]
"rest" = "bright green"
"working_copy empty" = "green"
@ -24,5 +29,13 @@ merge-tool-edits-conflict-markers = true
"working_copy change_id" = "magenta"
"working_copy timestamp" = "cyan"
[git]
subprocess = true
[templates]
draft_commit_description = '''
concat(
coalesce(description, "\n"),
surround(
"\nJJ: This commit contains the following changes:\n", "",
indent("JJ: ", diff.summary() ++ "\n\n" ++ diff.git()),
),
)
'''