Last active
November 11, 2019 15:47
-
-
Save iamcryptoki/9676828eca766490391a177b19a96b2f to your computer and use it in GitHub Desktop.
Configure Git to sign commits and tags using GPG.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
git config --global user.signingKey <PASTE_YOUR_KEY_ID_HERE> | |
git config --global commit.gpgsign true | |
git config --global tag.gpgsign true |
@hannesvdvreken While I found commit.gpgsign
I tried tag.gpgsign
intentionally and
had not luck as you hadn't. After digging I come to the conclusion there
is no config like that.
http://disq.us/p/1mhd62s
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@iamcryptoki
does
git config --global tag.gpgsign true
actually do something for you? For me it doesn't. Butcommit.gpgsign
does.