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, you include a Signed-off-by: line like this one at the bottom of your commit comments that contains your real name (not an alias):

...

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 which looks like:

No Format
commit 1c2a8a321eca34212c38c3d59b0bb7d43b897521
Author: Jane Doe <jane@daos.io>


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>

...