Skip to content

Commit f3bc190

Browse files
committed
Add in repo DCO file
Signed-off-by: Manuel Mendez <[email protected]>
1 parent 232544f commit f3bc190

File tree

2 files changed

+66
-0
lines changed

2 files changed

+66
-0
lines changed

CONTRIBUTING.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,10 @@ We're so glad you're here.
1111

1212
Please read and understand the code of conduct found [here](https://github.com/tinkerbell/.github/blob/master/CODE_OF_CONDUCT.md).
1313

14+
### DCO Sign Off
15+
16+
Please read and understand the DCO found [here](docs/DCO.md).
17+
1418
### Environment Details
1519

1620
Building is handled by `make`, please see the [Makefile](Makefile) for available targets.

docs/DCO.md

Lines changed: 62 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
# DCO Sign Off
2+
3+
All authors to the project retain copyright to their work. However, to ensure
4+
that they are only submitting work that they have rights to, we are requiring
5+
everyone to acknowledge this by signing their work.
6+
7+
Since this signature indicates your rights to the contribution and
8+
certifies the statements below, it must contain your real name and
9+
email address. Various forms of noreply email address must not be used.
10+
11+
Any copyright notices in this repository should specify the authors as "The
12+
project authors".
13+
14+
To sign your work, just add a line like this at the end of your commit message:
15+
16+
```text
17+
Signed-off-by: Jess Owens <[email protected]>
18+
```
19+
20+
This can easily be done with the `--signoff` option to `git commit`.
21+
22+
By doing this you state that you can certify the following (from [https://developercertificate.org/][1]):
23+
24+
```text
25+
Developer Certificate of Origin
26+
Version 1.1
27+
28+
Copyright (C) 2004, 2006 The Linux Foundation and its contributors.
29+
1 Letterman Drive
30+
Suite D4700
31+
San Francisco, CA, 94129
32+
33+
Everyone is permitted to copy and distribute verbatim copies of this
34+
license document, but changing it is not allowed.
35+
36+
37+
Developer's Certificate of Origin 1.1
38+
39+
By making a contribution to this project, I certify that:
40+
41+
(a) The contribution was created in whole or in part by me and I
42+
have the right to submit it under the open source license
43+
indicated in the file; or
44+
45+
(b) The contribution is based upon previous work that, to the best
46+
of my knowledge, is covered under an appropriate open source
47+
license and I have the right under that license to submit that
48+
work with modifications, whether created in whole or in part
49+
by me, under the same open source license (unless I am
50+
permitted to submit under a different license), as indicated
51+
in the file; or
52+
53+
(c) The contribution was provided directly to me by some other
54+
person who certified (a), (b) or (c) and I have not modified
55+
it.
56+
57+
(d) I understand and agree that this project and the contribution
58+
are public and that a record of the contribution (including all
59+
personal information I submit with it, including my sign-off) is
60+
maintained indefinitely and may be redistributed consistent with
61+
this project or the open source license(s) involved.
62+
```

0 commit comments

Comments
 (0)