Skip to content

Commit cfbc7cc

Browse files
committed
add contribution guidelines
1 parent e4d113e commit cfbc7cc

1 file changed

Lines changed: 55 additions & 0 deletions

File tree

CONTRIBUTING.md

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
## Contribution Guidelines
2+
3+
### Sign your work
4+
5+
The sign-off is a simple line at the end of the explanation for the
6+
patch, which certifies that you wrote the contribution or otherwise have the
7+
right to pass it on as an open-source patch. The rules (from
8+
[developercertificate.org](http://developercertificate.org/)):
9+
10+
```
11+
Developer Certificate of Origin
12+
Version 1.1
13+
14+
Copyright (C) 2004, 2006 The Linux Foundation and its contributors.
15+
660 York Street, Suite 102,
16+
San Francisco, CA 94110 USA
17+
18+
Everyone is permitted to copy and distribute verbatim copies of this
19+
license document, but changing it is not allowed.
20+
21+
22+
Developer's Certificate of Origin 1.1
23+
24+
By making a contribution to this project, I certify that:
25+
26+
(a) The contribution was created in whole or in part by me and I
27+
have the right to submit it under the open source license
28+
indicated in the file; or
29+
30+
(b) The contribution is based upon previous work that, to the best
31+
of my knowledge, is covered under an appropriate open source
32+
license and I have the right under that license to submit that
33+
work with modifications, whether created in whole or in part
34+
by me, under the same open source license (unless I am
35+
permitted to submit under a different license), as indicated
36+
in the file; or
37+
38+
(c) The contribution was provided directly to me by some other
39+
person who certified (a), (b) or (c) and I have not modified
40+
it.
41+
42+
(d) I understand and agree that this project and the contribution
43+
are public and that a record of the contribution (including all
44+
personal information I submit with it, including my sign-off) is
45+
maintained indefinitely and may be redistributed consistent with
46+
this project or the open source license(s) involved.
47+
```
48+
49+
you just add the sign-off line to every git commit message:
50+
51+
Signed-off-by: John Doe <john.doe@gmail.com>
52+
53+
using your real name (no pseudonyms or anonymous contributions)
54+
55+
You can add the sign off when creating the git commit via `git commit -s`.

0 commit comments

Comments
 (0)