Skip to content

Commit ab0d3b6

Browse files
authored
Change username to github_handle in commit signing guide
1 parent 71b7899 commit ab0d3b6

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

practices/guides/commit-signing.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
6060
6161
```bash
6262
git config --global user.email ${my_email_address} # same one used during key generation
63-
git config --global user.name ${my_username}
63+
git config --global user.name ${github_handle}
6464
git config --global user.signingkey ${key_id}
6565
git config --global commit.gpgsign true
6666
git config --global tag.gpgsign true
@@ -106,7 +106,7 @@
106106
107107
```bash
108108
git config --global user.email ${my_email_address} # same one used during key generation
109-
git config --global user.name ${my_username}
109+
git config --global user.name ${github_handle}
110110
git config --global user.signingkey ${key_id}
111111
git config --global commit.gpgsign true
112112
git config --global tag.gpgsign true
@@ -130,7 +130,7 @@
130130
```bash
131131
gpg -k # This should list the new key
132132
git config --global user.email ${my_email_address} # same one used during key generation
133-
git config --global user.name ${my_username}
133+
git config --global user.name ${github_handle}
134134
git config --global user.signingkey ${key_id}
135135
git config --global commit.gpgsign true
136136
git config --global tag.gpgsign true
@@ -152,7 +152,7 @@
152152
```bash
153153
gpg -k # This should list the new key
154154
git config --global user.email ${my_email_address} # same one used during key generation
155-
git config --global user.name ${my_username}
155+
git config --global user.name ${github_handle}
156156
git config --global user.signingkey ${key_id}
157157
git config --global commit.gpgsign true
158158
git config --global tag.gpgsign true

0 commit comments

Comments
 (0)