Browse Source

Merge pull request #5275

Zetok Zalbavar (1):
      docs: add to CONTRIBUTING.md Git config line for forcing singning tags
reviewable/pr5371/r1
sudden6 7 years ago
parent
commit
968af2d62b
No known key found for this signature in database
GPG Key ID: 279509B499E032B9
  1. 10
      CONTRIBUTING.md

10
CONTRIBUTING.md

@ -361,17 +361,19 @@ https://github.com/qTox/qTox/wiki/Testing @@ -361,17 +361,19 @@ https://github.com/qTox/qTox/wiki/Testing
*Not a requirement, just a friendly tip. :wink:*
It's nice when commits are being GPG-signed. Github has a few articles about
configuring & signing.
It's nice when commits and tags are being GPG-signed. Github has a few articles
about configuring & signing.
https://help.github.com/articles/signing-commits-using-gpg/
And *tl;dr* version:
```
```sh
gpg --gen-key
gpg --send-keys <your generated key ID>
git config --global commit.gpgsign true
git config --local commit.gpgsign true
# also force signing tags
git config --local tag.forceSignAnnotated true
```

Loading…
Cancel
Save