Skip to content

Commit 65d9ce4

Browse files
authored
Use maximum compatible git config syntax. (#534)
This commit favors the deprecated but backward compatible syntax, not the up-to-date syntax using subcommands.
1 parent 0115fc3 commit 65d9ce4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/contributing/commit-signing.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@ ssh-keygen -f $KEY_FILE -C "$(git config --global --get user.email)" -t ed25519
4141
1. Configure git to sign using SSH.
4242

4343
```bash
44-
git config --global gpg.format=ssh
45-
git config --global user.signingkey="${KEY_FILE}.pub"
44+
git config --global gpg.format ssh
45+
git config --global user.signingkey "${KEY_FILE}.pub"
4646
```
4747

4848
2. Follow the [Github documentation][github-verification] to configure commit signing

0 commit comments

Comments
 (0)