新機能: プロジェクトの最新情報についてはTwitterMastodonでご確認ください。

DCO署名承認

プロジェクトへのすべての貢献者は、自身の作業に関する著作権を保持しますが、提出権限のある作業のみを提出する必要があります。

すべての貢献者に対して、「DCO署名」を使用してGitでコミットに署名することにより、貢献するコードに対する権利を持っていることを確認することを要求します。「PGP」やgitsignなどを使用した「コミット署名」とは異なります!

cert-managerリポジトリ内の著作権表示は、作成者を「The cert-manager Authors」として指定する必要があります。

--signoff オプションをgit commitまたはgit rebaseに渡して、作業に署名します。

# Sign off a commit as you're making it
git commit --signoff -m"my commit"
# Add a signoff to the last commit you made
git commit --amend --signoff
# Rebase your branch against master and sign off every commit in your branch
git rebase --signoff master

これにより、コミットの最後に次のような行が追加されます。

Signed-off-by: Joe Bloggs <joe@example.com>

コミットに署名することにより、次のことを保証します。

Developer Certificate of Origin
Version 1.1
Copyright (C) 2004, 2006 The Linux Foundation and its contributors.
1 Letterman Drive
Suite D4700
San Francisco, CA, 94129
Everyone is permitted to copy and distribute verbatim copies of this
license document, but changing it is not allowed.
Developer's Certificate of Origin 1.1
By making a contribution to this project, I certify that:
(a) The contribution was created in whole or in part by me and I
have the right to submit it under the open source license
indicated in the file; or
(b) The contribution is based upon previous work that, to the best
of my knowledge, is covered under an appropriate open source
license and I have the right under that license to submit that
work with modifications, whether created in whole or in part
by me, under the same open source license (unless I am
permitted to submit under a different license), as indicated
in the file; or
(c) The contribution was provided directly to me by some other
person who certified (a), (b) or (c) and I have not modified
it.
(d) I understand and agree that this project and the contribution
are public and that a record of the contribution (including all
personal information I submit with it, including my sign-off) is
maintained indefinitely and may be redistributed consistent with
this project or the open source license(s) involved.

この声明は、https://developercertificate.org/から引用されています。