From 30ed2b58a8534d104d079d5ec2db0a2e6a70c589 Mon Sep 17 00:00:00 2001 From: Andy Hall Date: Sun, 13 Nov 2022 22:51:11 -0500 Subject: [PATCH] Fix `git config` command syntax `git config` expects a space between the key and value rather than an equals sign. --- data/reusables/gpg/paste-ssh-public-key.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/reusables/gpg/paste-ssh-public-key.md b/data/reusables/gpg/paste-ssh-public-key.md index 7611251ec0..e8cf5798e8 100644 --- a/data/reusables/gpg/paste-ssh-public-key.md +++ b/data/reusables/gpg/paste-ssh-public-key.md @@ -1,3 +1,3 @@ 1. To set your SSH signing key in Git, paste the text below, substituting **/PATH/TO/KEY.PUB** with the path to the public key you'd like to use. ```bash - $ git config --global user.signingkey=/PATH/TO/.SSH/KEY.PUB \ No newline at end of file + $ git config --global user.signingkey /PATH/TO/.SSH/KEY.PUB