From a7f5a530eb462531ed1799d1f35430cd0186ec39 Mon Sep 17 00:00:00 2001 From: Sauparna Palchowdhury <91951+kakkeshyor@users.noreply.github.com> Date: Thu, 20 Nov 2025 19:35:20 -0500 Subject: [PATCH] Normalize use of string in git command. "gpgSign" instead of "gpgsign" for both invocations: (a) avoids confusion, (b) matches use of camel case as in Git documentation. --- data/reusables/gpg/set-auto-sign.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/reusables/gpg/set-auto-sign.md b/data/reusables/gpg/set-auto-sign.md index 8c98b3ac2ae6..6df4fd43e0ec 100644 --- a/data/reusables/gpg/set-auto-sign.md +++ b/data/reusables/gpg/set-auto-sign.md @@ -1,7 +1,7 @@ 1. Optionally, to configure Git to sign all commits and tags by default, enter the following command: ```shell - git config --global commit.gpgsign true + git config --global commit.gpgSign true git config --global tag.gpgSign true ```