We ask that contributions have code commits signed. This is important in order to prove, as best we can, the provenance of contributions.
The developer pushing a commit as part of a PR isn't necessarily the person who committed it originally, if the commit is not signed. This distorts the commit history and makes it hard to tell where code came from.
If a person "signs off" a commit, they are free to use any name, specifically one not their own. Again, the commit history cannot be relied on to determine the origin of the code, if one developer is spoofing another. A malicious person could commit bad code (for instance a virus) and make it look like another developer created it.
The best solution, while not fool-proof, is to "securely sign" your commits. Such commits are digitally signed, with a GPG-key associated with your GitHub account. It still isn't foolproof, because a malicious developer could create a bogus email and account, but it is more reliable than an unsigned or a "signed-off by" commit.
If you don't sign your commits, we may accept your contribution, assuming it meets usefulness and contribution guidelines, but only if it isn't critical code and only after checking it carefully. If code performs an important role, we will insist that it be securely signed.
Read below to find out how to sign your commits :)
To verify your commits, you will need to set up a GPG key, and attach it to your GitHub account.
See the git tools page for directions on doing this. The complete story is part of GitHub help.
The basic steps are
- generate your GPG key, and copy the ASCII representation of it.
- Add your GPG key to your GitHub account.
- Tell Git about your GPG key.
- Set default signing to have all of your commits securely signed automatically.
- Provide your GPG key passphrase, as prompted, when you do a commit.
Depending on your IDE, you may have to do your Git commits from your Git
bash shell to use the -S
option to force the secure signing.
We recommend you set git securely sign commits without the -S
option in
git commit
.
You can do it by setting git config --global commit.gpgsign true
and
git config --global user.signingkey 3AC5C34371567BD2
to all local repositories.
Without the --global
option, the change is applied to one local repository only.
Note
3AC5C34371567BD2
is your GPG Key ID
Regardless of how you sign a commit, commit messages are important too. See Contribution Workflow for details.