Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

The main DAOS repository is hosted on GitHub and is also used to track the status of each patch as it is build built, tested and finally merged to a branch. Developers submit patches to GitHub using git, and there is a rich browser interface for performing code reviews. Reviewers can also pull the change directly to their own repository and review the change locally.

...

Having good commit comments helps everyone that who is working on the code. See Commit Messages.

Sample Commit message:

No Format
DAOS-nnnn component: short description of change under 62 columns

A more detailed explanation of the change being made.  This can be as
detailed as you'd like, possibly several paragraphs in length.

Please provide a detailed explanation of what problem was solved, a
good high-level description of how it was solved, and which parts of
the code were affected (including function names as needed, for easier
searching).  Including specific error messages, stack traces, and
similar is also good.

Wrap lines at 70 columns or less.

Signed-off-by: Random J Developer <random@developer.example.org>

...