aboutsummaryrefslogtreecommitdiff
path: root/CONTRIBUTING.md
diff options
context:
space:
mode:
authorSebastian Ehlert <28669218+awvwgk@users.noreply.github.com>2020-09-03 23:28:02 +0200
committerSebastian Ehlert <28669218+awvwgk@users.noreply.github.com>2020-09-03 23:28:02 +0200
commit63f6b077b76bf9d4380fbbd71a9211f61e642000 (patch)
tree295fa44b7b946c7303b6593664c7b4c5756bc1bc /CONTRIBUTING.md
parent1f637cc7d966c0ede903041ed0d5c6b5483020ea (diff)
downloadfpm-63f6b077b76bf9d4380fbbd71a9211f61e642000.tar.gz
fpm-63f6b077b76bf9d4380fbbd71a9211f61e642000.zip
Remove DCO and signed commit requirement from guidelines
Diffstat (limited to 'CONTRIBUTING.md')
-rw-r--r--CONTRIBUTING.md58
1 files changed, 0 insertions, 58 deletions
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index b890980..bdc1547 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -71,61 +71,3 @@ You can learn how from
Don't know where to start?
You can start by looking through these
[help-wanted issues](https://github.com/fortran-lang/fpm/issues?q=label%3A%22help+wanted%22+is%3Aissue+is%3Aopen).
-
-
-## Sign Your Work
-
-The sign-off is a simple line at the end of the explanation for a commit.
-All commits needs to be signed.
-Your signature certifies that you wrote the patch or otherwise have the right to contribute the material.
-The rules are pretty simple, if you can certify the below
-(from [developercertificate.org](https://developercertificate.org/)):
-
-```
-Developer Certificate of Origin
-Version 1.1
-
-Copyright (C) 2004, 2006 The Linux Foundation and its contributors.
-1 Letterman Drive
-Suite D4700
-San Francisco, CA, 94129
-
-Everyone is permitted to copy and distribute verbatim copies of this
-license document, but changing it is not allowed.
-
-Developer's Certificate of Origin 1.1
-
-By making a contribution to this project, I certify that:
-
-(a) 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
-
-(b) 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
-
-(c) The contribution was provided directly to me by some other
- person who certified (a), (b) or (c) and I have not modified
- it.
-
-(d) 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.
-```
-
-Then you just add a line to every git commit message:
-
-```
-Signed-off-by: Joe Smith <joe.smith@example.com>
-```
-
-Use your real name (sorry, no pseudonyms or anonymous contributions.)
-
-If you set your `user.name` and `user.email` git configs, you can sign your commit automatically with `git commit -s`.