Thank you for your interest in contributing. This project follows the Developer Certificate of Origin (DCO) for third-party contributions.
We require that all contributors sign off on their commits. This certifies that the contribution is your original work, or that you have the right to submit it under the project’s open source license.
- Full text of the DCO: Developer Certificate of Origin, Version 1.1
- Any contribution that contains commits not signed off will not be accepted.
When committing, add the -s / --signoff option:
git commit -s -m "Your commit message"That appends a line like:
Signed-off-by: Your Name <your.email@example.com>
By signing off, you certify:
(a) The contribution was created in whole or in part by you and you 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 your knowledge, is covered under an appropriate open source license and you have the right under that license to submit that work with modifications, whether created in whole or in part by you, under the same open source license (unless you are permitted to submit under a different license), as indicated in the file; or
(c) The contribution was provided directly to you by some other person who certified (a), (b) or (c) and you have not modified it.
(d) You understand and agree that this project and the contribution are public and that a record of the contribution (including all personal information you submit with it, including your sign-off) is maintained indefinitely and may be redistributed consistent with this project or the open source license(s) involved.
Contributions are accepted under the same license as the project: Apache License, Version 2.0. By submitting a contribution, you agree that your contribution will be licensed under the Apache 2.0 license.
- Open an issue or discuss the change in an existing issue.
- Fork the repository and create a branch for your change.
- Make your changes, following existing code style and project conventions.
- Ensure tests pass (if applicable).
- Sign off every commit with
git commit -s -m "...". - Open a pull request and reference the issue.
Thank you for contributing.