From 0959c656222a4237f64c854c7a4ea3a79a39bed0 Mon Sep 17 00:00:00 2001 From: Hans Goor Date: Mon, 7 Aug 2023 15:18:29 +0200 Subject: [PATCH] Added git config --- git/.gitconfig | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 git/.gitconfig diff --git a/git/.gitconfig b/git/.gitconfig new file mode 100644 index 0000000..fc98429 --- /dev/null +++ b/git/.gitconfig @@ -0,0 +1,16 @@ +# This is Git's per-user configuration file. +[user] +# Please adapt and uncomment the following lines: + name = Hans Goor + email = me@eyedevelop.org + signingkey = D414A7FA58C29568EF4E05CD7E05BC839785EAF6 +[commit] + gpgsign = true +[pull] + rebase = true +[push] + autoSetupRemote = true +[merge] + ff = no +[init] + defaultBranch = main