From 8b972da068708a8b17f3ab153ea940690ca49ca9 Mon Sep 17 00:00:00 2001 From: Maxim Cournoyer Date: Sun, 23 Apr 2023 10:28:59 -0400 Subject: Makefile.am: Auto-configure Git on 'make'. This means we do not need to worry anymore about manually syncing the pre-push git hook or the Guix-provided git configuration. * etc/git/gitconfig: Augment configuration template with useful options to allow for auto-configuration. * Makefile.am (.git/hooks/pre-push, .git/config): New targets. (nodist_noinst_DATA): New primary variable holding the above targets. --- etc/git/gitconfig | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) (limited to 'etc/git') diff --git a/etc/git/gitconfig b/etc/git/gitconfig index c9ebdc8fa8..831fbce6e7 100644 --- a/etc/git/gitconfig +++ b/etc/git/gitconfig @@ -1,5 +1,21 @@ +[commit] + gpgsign = true + [diff "scheme"] xfuncname = "^(\\(define.*)$" [diff "texinfo"] xfuncname = "^@node[[:space:]]+([^,]+).*$" + +[format] + forceinbodyfrom = true # help preserve commit authorship + thread = shallow + useAutoBase = true + +[pull] + rebase = true + +[sendemail] + to = guix-patches@gnu.org + headerCmd = etc/teams.scm cc-members-header-cmd + thread = no -- cgit v1.2.3