|
| 1 | +# Contributing |
| 2 | + |
| 3 | +We encourage anyone who wants to contribute to submit |
| 4 | +[Issues](https://github.com/oneapi-src/level-zero/issues) and |
| 5 | +[Pull Requests](https://github.com/oneapi-src/level-zero/pulls). We will help |
| 6 | +review these for proper alignment with the |
| 7 | +[Level Zero Specification](https://spec.oneapi.com/level-zero/latest/index.html). |
| 8 | + |
| 9 | + |
| 10 | +Specific coding conventions and standards guidelines are a work-in-progress, and |
| 11 | +we will post them here soon. |
| 12 | + |
| 13 | +## Sign Your Work |
| 14 | + |
| 15 | +Please use the sign-off line at the end of your patch. Your signature certifies |
| 16 | +that you wrote the patch or otherwise have the right to pass it on as an |
| 17 | +open-source patch. To do so, if you can certify the below |
| 18 | +(from [developercertificate.org](http://developercertificate.org/)): |
| 19 | + |
| 20 | +``` |
| 21 | +Developer Certificate of Origin |
| 22 | +Version 1.1 |
| 23 | +
|
| 24 | +Copyright (C) 2004, 2006 The Linux Foundation and its contributors. |
| 25 | +660 York Street, Suite 102, |
| 26 | +San Francisco, CA 94110 USA |
| 27 | +
|
| 28 | +Everyone is permitted to copy and distribute verbatim copies of this |
| 29 | +license document, but changing it is not allowed. |
| 30 | +
|
| 31 | +Developer's Certificate of Origin 1.1 |
| 32 | +
|
| 33 | +By making a contribution to this project, I certify that: |
| 34 | +
|
| 35 | +(a) The contribution was created in whole or in part by me and I |
| 36 | + have the right to submit it under the open source license |
| 37 | + indicated in the file; or |
| 38 | +
|
| 39 | +(b) The contribution is based upon previous work that, to the best |
| 40 | + of my knowledge, is covered under an appropriate open source |
| 41 | + license and I have the right under that license to submit that |
| 42 | + work with modifications, whether created in whole or in part |
| 43 | + by me, under the same open source license (unless I am |
| 44 | + permitted to submit under a different license), as indicated |
| 45 | + in the file; or |
| 46 | +
|
| 47 | +(c) The contribution was provided directly to me by some other |
| 48 | + person who certified (a), (b) or (c) and I have not modified |
| 49 | + it. |
| 50 | +
|
| 51 | +(d) I understand and agree that this project and the contribution |
| 52 | + are public and that a record of the contribution (including all |
| 53 | + personal information I submit with it, including my sign-off) is |
| 54 | + maintained indefinitely and may be redistributed consistent with |
| 55 | + this project or the open source license(s) involved. |
| 56 | +``` |
| 57 | + |
| 58 | +Then add a line to every git commit message: |
| 59 | + |
| 60 | + Signed-off-by: Kris Smith <[email protected]> |
| 61 | + |
| 62 | +Use your real name (sorry, no pseudonyms or anonymous contributions). |
| 63 | + |
| 64 | +If you set your `user.name` and `user.email` git configs, you can sign your |
| 65 | +commit automatically with `git commit -s`. |
0 commit comments