|
| 1 | +# Contributing |
| 2 | +## DCO Sign off |
| 3 | + |
| 4 | +All authors to the project retain copyright to their work. However, to ensure |
| 5 | +that they are only submitting work that they have rights to, we are requiring |
| 6 | +everyone to acknowledge this by signing their work. |
| 7 | + |
| 8 | +Any copyright notices in this repo should specify the authors as "the Jetstack |
| 9 | +kube-oidc-proxy contributors". |
| 10 | + |
| 11 | +To sign your work, just add a line like this at the end of your commit message: |
| 12 | + |
| 13 | +``` |
| 14 | +Signed-off-by: Joe Bloggs <[email protected]> |
| 15 | +``` |
| 16 | + |
| 17 | +This can easily be done with the `--signoff` option to `git commit`. |
| 18 | +You can also mass sign-off a whole PR with `git rebase --signoff master`, replacing |
| 19 | +`master` with the branch you are creating a pull request again if not master. |
| 20 | + |
| 21 | +By doing this you state that you can certify the following (from https://developercertificate.org/): |
| 22 | + |
| 23 | +``` |
| 24 | +Developer Certificate of Origin |
| 25 | +Version 1.1 |
| 26 | +
|
| 27 | +Copyright (C) 2004, 2006 The Linux Foundation and its contributors. |
| 28 | +1 Letterman Drive |
| 29 | +Suite D4700 |
| 30 | +San Francisco, CA, 94129 |
| 31 | +
|
| 32 | +Everyone is permitted to copy and distribute verbatim copies of this |
| 33 | +license document, but changing it is not allowed. |
| 34 | +
|
| 35 | +
|
| 36 | +Developer's Certificate of Origin 1.1 |
| 37 | +
|
| 38 | +By making a contribution to this project, I certify that: |
| 39 | +
|
| 40 | +(a) The contribution was created in whole or in part by me and I |
| 41 | + have the right to submit it under the open source license |
| 42 | + indicated in the file; or |
| 43 | +
|
| 44 | +(b) The contribution is based upon previous work that, to the best |
| 45 | + of my knowledge, is covered under an appropriate open source |
| 46 | + license and I have the right under that license to submit that |
| 47 | + work with modifications, whether created in whole or in part |
| 48 | + by me, under the same open source license (unless I am |
| 49 | + permitted to submit under a different license), as indicated |
| 50 | + in the file; or |
| 51 | +
|
| 52 | +(c) The contribution was provided directly to me by some other |
| 53 | + person who certified (a), (b) or (c) and I have not modified |
| 54 | + it. |
| 55 | +
|
| 56 | +(d) I understand and agree that this project and the contribution |
| 57 | + are public and that a record of the contribution (including all |
| 58 | + personal information I submit with it, including my sign-off) is |
| 59 | + maintained indefinitely and may be redistributed consistent with |
| 60 | + this project or the open source license(s) involved. |
| 61 | +``` |
0 commit comments