We encourage everyone to help us improve Omnia by contributing to the project. Contributions can be as small as documentation updates or adding example use cases, to adding commenting or properly styling code segments, to full feature contributions. We ask that contributors follow our established guidelines for contributing to the project.
These guidelines are based on the pravega project.
This document will evolve as the project matures. Please be sure to regularly refer back in order to stay in-line with contribution guidelines.
Contributions to Omnia are made through Pull Requests (PRs). To make a pull request against Omnia, use the following steps:
devel
. Use git checkout devel; git checkout -b <new-branch-name>
to create the new branch.
Commit changes to the issue branch: It is important to commit your changes to the issue branch. Commit messages should be descriptive of the changes being made.
Signing your commits: All commits to Omnia need to be signed with the Developer Certificate of Origin (DCO) in order to certify that the contributor has permission to contribute the code. In order to sign commits, use either the --signoff
or -s
option to git commit
:
git commit --signoff
git commit -s
Make sure you have your user name and e-mail set. The --signoff | -s
option will use the configured user name and e-mail, so it is important to configure it before the first time you commit. Check the following references:
Push the changes to your personal repo: To be able to create a pull request, push the changes to origin: git push origin <new-branch-name>
. Here I assume that origin
is your personal repo, e.g., lwilson/omnia.git
.
Create a pull request: Create a pull request with a title following this format Issue ###: Description (i.e., Issue 1023: Reformat testutils). It is important that you do a good job with the description to make the job of the code reviewer easier. A good description not only reduces review time, but also reduces the probability of a misunderstanding with the pull request.
git pull --rebase upstream devel #upstream is dellhpc/omnia
git push --force origin <pr-branch-name> #origin is your fork of the repository (e.g., <github_user_name>/omnia.git)
The diagram below describes the contribution flow. Omnia has two lifetime branches: devel
and release
. The release
branch is reserved for releases and their associated tags. The devel
branch is where all development work occurs. The devel
branch is also the default branch for the project.
Contributions to Omnia must be signed with the Developer Certificate of Origin (DCO):
Developer Certificate of Origin
Version 1.1
Copyright (C) 2004, 2006 The Linux Foundation and its contributors.
1 Letterman Drive
Suite D4700
San Francisco, CA, 94129
Everyone is permitted to copy and distribute verbatim copies of this
license document, but changing it is not allowed.
Developer's Certificate of Origin 1.1
By making a contribution to this project, I certify that:
(a) The contribution was created in whole or in part by me and I
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 my knowledge, is covered under an appropriate open source
license and I have the right under that license to submit that
work with modifications, whether created in whole or in part
by me, under the same open source license (unless I am
permitted to submit under a different license), as indicated
in the file; or
(c) The contribution was provided directly to me by some other
person who certified (a), (b) or (c) and I have not modified
it.
(d) I understand and agree that this project and the contribution
are public and that a record of the contribution (including all
personal information I submit with it, including my sign-off) is
maintained indefinitely and may be redistributed consistent with
this project or the open source license(s) involved.