Skip to content

Latest commit

 

History

History
35 lines (27 loc) · 2.44 KB

contribute.md

File metadata and controls

35 lines (27 loc) · 2.44 KB
layout title description
page
Contribute
Contribution process to help newcomers get started with Open Horizon

Contributions will only be considered when linked to an open issue, aligned with the project goals, and attested to by the Contributor (ex. signing off on a commit, accepting the Developer Certificate of Origin).

Get assigned

To get assigned to an issue, start with an open issue labelled Good First Issue in one of the repositories and submit a comment on the issue requesting that it be assigned to you.

Discuss

Attest

All commits should be signed off (-s flag on git commit).

The -s option used for both alternatives causes a committer signed-off-by line to be appended to the end of the commit message body.  It certifies that committer has the rights to submit this work under the same license and agrees to our Developer Certificate of Origin. E.g. signed-off-by: John Doe johndoe@example.com

In order to use the -s option, you need to make sure you configure your git name (user.name) and email address (user.email):

{% capture code %}git config --global user.name "John Doe"{% endcapture %} {% include code_snippet.md code=code language='shell' now='now' %} {% capture code %}git config --global user.email "johndoe@example.com"{% endcapture %} {% include code_snippet.md code=code language='shell' now='now' %} To check {% capture code %}git config --list{% endcapture %} {% include code_snippet.md code=code language='shell' now='now' %}