|
@@ -0,0 +1,50 @@
|
|
1
|
+# How to contribute
|
|
2
|
+
|
|
3
|
+Thank you for your interest in contributing to MARTINS.js! 👍
|
|
4
|
+
|
|
5
|
+In order to contribute to MARTINS.js, you must certify that you have the right to submit your contribution according to the [Developer Certificate of Origin (DCO)](https://developercertificate.org). Each commit must include a `Signed-off-by` line at the end of the commit message, as in the template below:
|
|
6
|
+
|
|
7
|
+```
|
|
8
|
+Signed-off-by: Your Name <your.email@addr.es>
|
|
9
|
+```
|
|
10
|
+
|
|
11
|
+This can easily be done with `git commit -s` or `git commit --signoff`. You must use your real name and include a valid e-mail address of yours.
|
|
12
|
+
|
|
13
|
+By including a `Signed-off-by` line, you agree to and certify the following:
|
|
14
|
+
|
|
15
|
+```
|
|
16
|
+Developer Certificate of Origin
|
|
17
|
+Version 1.1
|
|
18
|
+
|
|
19
|
+Copyright (C) 2004, 2006 The Linux Foundation and its contributors.
|
|
20
|
+
|
|
21
|
+Everyone is permitted to copy and distribute verbatim copies of this
|
|
22
|
+license document, but changing it is not allowed.
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+Developer's Certificate of Origin 1.1
|
|
26
|
+
|
|
27
|
+By making a contribution to this project, I certify that:
|
|
28
|
+
|
|
29
|
+(a) The contribution was created in whole or in part by me and I
|
|
30
|
+ have the right to submit it under the open source license
|
|
31
|
+ indicated in the file; or
|
|
32
|
+
|
|
33
|
+(b) The contribution is based upon previous work that, to the best
|
|
34
|
+ of my knowledge, is covered under an appropriate open source
|
|
35
|
+ license and I have the right under that license to submit that
|
|
36
|
+ work with modifications, whether created in whole or in part
|
|
37
|
+ by me, under the same open source license (unless I am
|
|
38
|
+ permitted to submit under a different license), as indicated
|
|
39
|
+ in the file; or
|
|
40
|
+
|
|
41
|
+(c) The contribution was provided directly to me by some other
|
|
42
|
+ person who certified (a), (b) or (c) and I have not modified
|
|
43
|
+ it.
|
|
44
|
+
|
|
45
|
+(d) I understand and agree that this project and the contribution
|
|
46
|
+ are public and that a record of the contribution (including all
|
|
47
|
+ personal information I submit with it, including my sign-off) is
|
|
48
|
+ maintained indefinitely and may be redistributed consistent with
|
|
49
|
+ this project or the open source license(s) involved.
|
|
50
|
+```
|