diff options
author | Matt Turner <mattst88@gmail.com> | 2021-11-25 20:11:18 -0800 |
---|---|---|
committer | Matt Turner <mattst88@gmail.com> | 2021-11-25 20:11:18 -0800 |
commit | 22836fdf66674f34af164d28a2245a7c31de973e (patch) | |
tree | dd174fc705db3b0a93ff7f0e4a473178d177c95b | |
parent | f55df73375eb4aba9ed9861ec5e4a461a8511168 (diff) |
Add gentoo/.gitconfig and update GPG signing key
-rw-r--r-- | .gitconfig | 4 | ||||
-rw-r--r-- | projects/gentoo/.gitconfig | 10 |
2 files changed, 13 insertions, 1 deletions
@@ -1,7 +1,9 @@ [user] email = mattst88@gmail.com name = Matt Turner - signingkey = 0xED2ED19F85B3682C + signingkey = 0xACEB29740C9A4E97 +[includeIf "gitdir:~/projects/gentoo/"] + path = ~/projects/gentoo/.gitconfig [color] ui = auto [rebase] diff --git a/projects/gentoo/.gitconfig b/projects/gentoo/.gitconfig new file mode 100644 index 0000000..01f48a1 --- /dev/null +++ b/projects/gentoo/.gitconfig @@ -0,0 +1,10 @@ +[user] + email = mattst88@gentoo.org +[pull] + ff = only + rebase = merges +[push] + default = simple + gpgsign = 1 +[commit] + gpgsign = 1 |