File tree Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -173,20 +173,27 @@ Go to <kbd>Preferences > Experimental > Git Executable</kbd> and enable it.
173
173
174
174
####Select SSH as your GPG format for signing
175
175
176
+ [ Which program to select] ( https://git-scm.com/docs/git-config#Documentation/git-config.txt-gpgltformatgtprogram )
177
+
176
178
At <kbd >Preferences > GPG > GPG Format</kbd >, select <kbd >SSH</kbd >.
177
179
178
180
Automatically Gitkraken client will change your preferences in ` .gitconfig ` and populate GPG SSH Program with ssh-keygen
179
181
180
182
####Select the signing key
181
183
184
+ [ How to select SSH signing key] ( https://git-scm.com/docs/git-config#Documentation/git-config.txt-usersigningKey )
185
+
182
186
On <kbd >Signing key</kbd >, click on <kbd >Browse</kbd > and select the ` .pub ` key file previously generated.
183
187
184
188
####Create allowed_signers file
185
- This file is needed to verify the key used to sign the commits is valid and known by git
189
+ This file is needed to verify the key used to sign the commits is valid and known by git.
190
+ [ Allowed Signers file help] ( https://git-scm.com/docs/git-config#Documentation/git-config.txt-gpgsshallowedSignersFile )
186
191
187
192
On your terminal, run:
188
193
```
189
194
touch ~/.ssh/allowed_signers
195
+ echo "$(git config --get user.email) namespaces=\"git\" $(cat ~/.ssh/<MY_KEY>.pub)" >> ~/.ssh/allowed_signers
196
+
190
197
```
191
198
And select the file in Gitkraken client.
192
199
You can’t perform that action at this time.
0 commit comments