aboutsummaryrefslogtreecommitdiff
path: root/documentation/content/en/articles/committers-guide
diff options
context:
space:
mode:
authorLorenzo Salvadore <salvadore@FreeBSD.org>2022-04-21 01:13:37 +0000
committerLorenzo Salvadore <salvadore@FreeBSD.org>2022-04-21 12:49:53 +0000
commitf4bd6942e7cb0a8a7568673c8be3f1b54347fc7c (patch)
tree9e23377d84014782e3983ef7cd9f1d624820f5f5 /documentation/content/en/articles/committers-guide
parent812db4dd4c06da4988e63b0cd810bfcb3f8cf98b (diff)
Diffstat (limited to 'documentation/content/en/articles/committers-guide')
-rw-r--r--documentation/content/en/articles/committers-guide/_index.adoc8
1 files changed, 4 insertions, 4 deletions
diff --git a/documentation/content/en/articles/committers-guide/_index.adoc b/documentation/content/en/articles/committers-guide/_index.adoc
index 207c63b222..f4ca63db36 100644
--- a/documentation/content/en/articles/committers-guide/_index.adoc
+++ b/documentation/content/en/articles/committers-guide/_index.adoc
@@ -625,10 +625,10 @@ You can do this by setting a few configuration variables:
[source,shell]
....
-% git config --add user.signingKey=LONG-KEY-ID
-% git config --add commit.gpgSign=true
-% git config --add tag.gpgSign=true
-% git config --add push.gpgSign=if-asked
+% git config --add user.signingKey LONG-KEY-ID
+% git config --add commit.gpgSign true
+% git config --add tag.gpgSign true
+% git config --add push.gpgSign if-asked
....
// push.gpgSign should probably be set to `yes` once we enable it, or be set with --global, so that it is enabled for all repositories.