Skip to main content

Notice: This Wiki is now read only and edits are no longer possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "Development Resources/IP Due Diligence for Git and Gerrit"

m (The Contribution)
(The Contribution)
Line 11: Line 11:
 
==The Contribution==
 
==The Contribution==
  
The contribution must have the author field set to the contributor's credentials.
+
The contribution must be packaged as a Git commit record.
  
Further, the contribution my be "Signed-off-by" the contributor using identical credentials; e.g.
+
The contribution must be delivered to the Eclipse project as a pull request, or via Gerrit push.
Signed-off-by: Wayne Beaton <wayne@eclipse.org>
+
  
By signing off on a contribution, the contributor asserts that:
+
The contribution must have the author field set to the contributor's credentials (name and email address).
 +
 
 +
The contributor must certify the contribution. Specifically, the contributor must assert the following:
 +
 
 +
<div style="padding:5px;margin:5px;border-style:solid;border-width:1px">
 +
Developer's Certificate of Origin 1.1
 +
 
 +
''This text was taken from [http://git.kernel.org/?p=linux/kernel/git/torvalds/linux-2.6.git;a=blob;f=Documentation/SubmittingPatches;hb=4e8a2372f9255a1464ef488ed925455f53fbdaa1 linux-2.6 Documentation/SubmittingPatches] and is covered by the GPLv2.''
 +
 
 +
By making a contribution to this project, I certify that:
  
 
# 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
 
# 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
 
# 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
 
# 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
# The contribution was provided directly to me by some other person who certified (1), (2) or (3) and I have not modified it. 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."
+
# The contribution was provided directly to me by some other person who certified (1), (2) or (3) and I have not modified it. 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.
# 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."
+
# 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.
 +
</div>
 +
 
 +
This certificate of origin must be asserted by adding a "Signed-off-by" line to the Git commit record's comment using the author's credentials; e.g.
 +
Signed-off-by: Wayne Beaton <wayne@eclipse.org>

Revision as of 11:01, 31 October 2012

Warning2.png
This is a work-in-progress that hasn't been implemented yet. The Eclipse IP Due Diligence Process poster is the authority with regard to how IP contributions must be handled.


Git provides makes it easy to wrap and indefinitely persist contributions along with metadata. Specifically, contributions delivered via Git are packed into commit records that include the identity of the contributor, dates, comments, etc.

Project information pages include a block that looks something like this:

Contribute section.png

The very first paragraph contains a link to this page. Project-specific "how to contribute" pages provide a similar link.

The Contribution

The contribution must be packaged as a Git commit record.

The contribution must be delivered to the Eclipse project as a pull request, or via Gerrit push.

The contribution must have the author field set to the contributor's credentials (name and email address).

The contributor must certify the contribution. Specifically, the contributor must assert the following:

Developer's Certificate of Origin 1.1

This text was taken from linux-2.6 Documentation/SubmittingPatches and is covered by the GPLv2.

By making a contribution to this project, I certify that:

  1. 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
  2. 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
  3. The contribution was provided directly to me by some other person who certified (1), (2) or (3) and I have not modified it. 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.
  4. 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.

This certificate of origin must be asserted by adding a "Signed-off-by" line to the Git commit record's comment using the author's credentials; e.g.

Signed-off-by: Wayne Beaton <wayne@eclipse.org>

Back to the top