March 2019
Intermediate to advanced
636 pages
27h 50m
English
We can now finalize and activate our gpg signing. In the console, type in the following command:
git config --global commit.gpgsign true
Now, instead of having to create a separate branch and go through the same steps all over again, we will simply amend our commit and add our signature to it:
git commit --amend -S -m "Testing commit signing."
The command will delegate the signing to GPG, and you should be asked for your gpg passphrase. Once this is completed, we can push ...
Read now
Unlock full access