1
0
mirror of https://github.com/qTox/qTox.git synced 2024-03-22 14:00:36 +08:00

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.
This commit is contained in:
Zetok Zalbavar 2016-04-14 23:53:31 +01:00
parent 2646e454e8
commit f634500cb5
No known key found for this signature in database
GPG Key ID: C953D3880212068A

View File

@ -6,9 +6,13 @@
## 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
@ -17,6 +21,14 @@ Preferably use SSH.
There are quite a few articles about that:
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
- **always** use [commit message format]