Browse Source

docs(MAINTAINING.md): add more git-related info

Point to CONTRIBUTING.md section for GPG-signing config & links.
Add command for alias to check commit signatures.
pull/3113/head
Zetok Zalbavar 9 years ago
parent
commit
f634500cb5
No known key found for this signature in database
GPG Key ID: C953D3880212068A
  1. 16
      MAINTAINING.md

16
MAINTAINING.md

@ -6,9 +6,13 @@
## GPG signing ## GPG signing
Read it: https://help.github.com/articles/signing-commits-using-gpg/ While contributors are suggested to use GPG, as a maintainer you **are
required** to use GPG to sign commits & merges.
If you don't have GPG signing set up yet, now is the moment to do it.
[Config, etc.](/CONTRIBUTING.md#git-config)
After you read it, perhaps including "Further reading", do what tip tells you.
## SSH ## SSH
@ -17,6 +21,14 @@ Preferably use SSH.
There are quite a few articles about that: There are quite a few articles about that:
https://help.github.com/categories/ssh/ https://help.github.com/categories/ssh/
## Useful aliases
Check whether commits are GPG-signed with `git logs`
```
git config --global alias.logs 'log --show-signature'
```
# Commits # Commits
- **always** use [commit message format] - **always** use [commit message format]

Loading…
Cancel
Save