From 071f318b1d111dd054731cd0d297173599643587 Mon Sep 17 00:00:00 2001 From: Joshua Priddle Date: Wed, 22 May 2024 14:15:18 -0400 Subject: [PATCH] Update post --- _posts/2024-05-18-signing-git-commits-in-2024.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/_posts/2024-05-18-signing-git-commits-in-2024.md b/_posts/2024-05-18-signing-git-commits-in-2024.md index 479a77e..0b4f327 100644 --- a/_posts/2024-05-18-signing-git-commits-in-2024.md +++ b/_posts/2024-05-18-signing-git-commits-in-2024.md @@ -54,6 +54,13 @@ Git also needs to know which keys are allowed to sign commits. cp ~/.ssh/id_ed25519_git.pub ~/.ssh/allowed_signers ``` +I also found that I needed to have ZSH load the key, so I added this to +`~/.zshenv`: + +```zsh +(ssh-add --apple-load-keychain -q 2>/dev/null &) +``` + Finally, to test: ```