Skip to content

Commit d122fe8

Browse files
authored
Removed erroneous = character
1 parent 9ac0b03 commit d122fe8

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

practices/guides/commit-signing.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,10 @@
3535
```
3636

3737
1. Pick `RSA and RSA`, or `RSA (sign only)` (there is no elliptic curve cryptography (ECC) support at the time of writing)
38-
1. `keysize` = `4096` bits (the minimum accepted for GitHub)
38+
1. `keysize` `4096` bits (the minimum accepted for GitHub)
3939
1. Select a key expiry time (personal choice)
40-
1. `Real name` = Your GitHub handle
41-
1. `Email address` = Your GitHub account email [listed on your GitHub profile](https://github.com/settings/emails) (you can use the privacy *@users.noreply.github.com* email address): `Settings` -> `Emails` -> `Keep my email addresses private`)
40+
1. `Real name` Your GitHub handle
41+
1. `Email address` Your GitHub account email [listed on your GitHub profile](https://github.com/settings/emails) (you can use the privacy *@users.noreply.github.com* email address): `Settings` -> `Emails` -> `Keep my email addresses private`)
4242

4343
> If you go for the private email option, consider enabling `Block command line pushes that expose my email`.
4444

@@ -61,7 +61,7 @@
6161
```bash
6262
git config --global user.email ${my_email_address} # same one used during key generation
6363
git config --global user.name ${my_username}
64-
git config --global user.signingkey = ${key_id}
64+
git config --global user.signingkey ${key_id}
6565
git config --global commit.gpgsign true
6666
git config --global tag.gpgsign true
6767
```
@@ -107,7 +107,7 @@
107107
```bash
108108
git config --global user.email ${my_email_address} # same one used during key generation
109109
git config --global user.name ${my_username}
110-
git config --global user.signingkey = ${key_id}
110+
git config --global user.signingkey ${key_id}
111111
git config --global commit.gpgsign true
112112
git config --global tag.gpgsign true
113113
```
@@ -131,7 +131,7 @@
131131
gpg -k # This should list the new key
132132
git config --global user.email ${my_email_address} # same one used during key generation
133133
git config --global user.name ${my_username}
134-
git config --global user.signingkey = ${key_id}
134+
git config --global user.signingkey ${key_id}
135135
git config --global commit.gpgsign true
136136
git config --global tag.gpgsign true
137137
```

0 commit comments

Comments
 (0)