Skip to content

Latest commit

 

History

History
49 lines (30 loc) · 2.45 KB

File metadata and controls

49 lines (30 loc) · 2.45 KB

Contributing to multi-modal-ai-studio

Thank you for your interest in contributing. This project follows the Developer Certificate of Origin (DCO) for third-party contributions.

Developer Certificate of Origin (DCO)

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.

Signing your work

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.

License

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.

How to contribute

  1. Open an issue or discuss the change in an existing issue.
  2. Fork the repository and create a branch for your change.
  3. Make your changes, following existing code style and project conventions.
  4. Ensure tests pass (if applicable).
  5. Sign off every commit with git commit -s -m "...".
  6. Open a pull request and reference the issue.

Thank you for contributing.