Versions Compared

Key

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

Similarly to the Linux kernel development, each DAOS contributor should adhere to the Developer Certificate of Origin (DCO). This means developers making contributions certify that they wrote the patch or have the right to pass it on. To certify this, a Signed-off-by: line containing the real name of the contributor (not an alias) must be included at the bottom of each commit comment:

...

Subsequent developers who co-author or otherwise help shepherd the contribution also add their own attestation so it’s not unusual to end up with a contribution commit message which looks like:

No Format
commit 067e922af48c0d9b45da507b5800c3951076c4e9
Author: Jane Doe <jane@daos.io>
Date:   Thu Jul 23 14:26:00 2015 +0800

    DAOS-100 container: add new feature

    Add awesome new feature to the container service.

    Change-Id: Idf6b303b1560346392b0eb645dac96ec195c4206
    Signed-off-by: Jane Doe <jane@daos.io>
    Signed-off-by: John Smith <jsmith@randomcorporate.com>
    Signed-off-by: Richard Roe <rich@daos.io>

...