DCO署名承認
プロジェクトへのすべての貢献者は、自身の作業に関する著作権を保持しますが、提出権限のある作業のみを提出する必要があります。
すべての貢献者に対して、「DCO署名」を使用してGitでコミットに署名することにより、貢献するコードに対する権利を持っていることを確認することを要求します。「PGP」やgitsign
などを使用した「コミット署名」とは異なります!
cert-managerリポジトリ内の著作権表示は、作成者を「The cert-manager Authors」として指定する必要があります。
--signoff
オプションをgit commit
またはgit rebase
に渡して、作業に署名します。
# Sign off a commit as you're making itgit commit --signoff -m"my commit"# Add a signoff to the last commit you madegit commit --amend --signoff# Rebase your branch against master and sign off every commit in your branchgit rebase --signoff master
これにより、コミットの最後に次のような行が追加されます。
Signed-off-by: Joe Bloggs <joe@example.com>
コミットに署名することにより、次のことを保証します。
Developer Certificate of OriginVersion 1.1Copyright (C) 2004, 2006 The Linux Foundation and its contributors.1 Letterman DriveSuite D4700San Francisco, CA, 94129Everyone is permitted to copy and distribute verbatim copies of thislicense document, but changing it is not allowed.Developer's Certificate of Origin 1.1By making a contribution to this project, I certify that:(a) The contribution was created in whole or in part by me and Ihave the right to submit it under the open source licenseindicated in the file; or(b) The contribution is based upon previous work that, to the bestof my knowledge, is covered under an appropriate open sourcelicense and I have the right under that license to submit thatwork with modifications, whether created in whole or in partby me, under the same open source license (unless I ampermitted to submit under a different license), as indicatedin the file; or(c) The contribution was provided directly to me by some otherperson who certified (a), (b) or (c) and I have not modifiedit.(d) I understand and agree that this project and the contributionare public and that a record of the contribution (including allpersonal information I submit with it, including my sign-off) ismaintained indefinitely and may be redistributed consistent withthis project or the open source license(s) involved.
この声明は、https://developercertificate.org/から引用されています。