From 9bc02dc2575d2b611a9ace4fd4935c8dd972e764 Mon Sep 17 00:00:00 2001 From: nhyatt Date: Thu, 25 Apr 2024 08:02:24 -0500 Subject: [PATCH] adds .gitconfig --- .gitconfig | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .gitconfig diff --git a/.gitconfig b/.gitconfig new file mode 100644 index 0000000..f391054 --- /dev/null +++ b/.gitconfig @@ -0,0 +1,15 @@ +[user] + name = John Doe + email = John.Doe@example.com + signingkey = DEADBEEF010203 +[credential] + username = a123456 + helper = osxkeychain +[init] + defaultbranch = main +[commit] + gpgsign = true +[gpg] + program = /usr/local/bin/gpg +[http] + sslCAInfo = /path/to/custom-cas.pem \ No newline at end of file