From 8483a4b067c5d914ba3f54a4734e2a1b4e073672 Mon Sep 17 00:00:00 2001 From: Christian Weiss Date: Thu, 12 Aug 2021 13:39:54 +0200 Subject: [PATCH 1/3] #675 link to license file, sign-off instructions Signed-off-by: Christian Weiss --- README.md | 29 +++++++++++++++++++++++++++-- 1 file changed, 27 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index bf3d582..f56e5b6 100644 --- a/README.md +++ b/README.md @@ -47,5 +47,30 @@ The freifunk API is designed to collect metadata of communities in a decentral w Licence ======= -Please feel free to use this data in any (usefull) way you want. -We assume it to be in the [public domain](https://creativecommons.org/publicdomain/zero/1.0/). +Please feel free to use this data in any (usefull) way you want. +All code and content in this git repository is proviced unter [Creative Commons Zero 1.0 Universal](LICENSE) license to you. + +Contribution +======= +Feel free to contribute to this project by creating a pull request. +Please sign-off your git commits before pushing it to your repository. + +You confirm that you are allowed to contribute all code and content of your commit to this repository by simply adding +a sign-off to your commit message. + +Please ensure that the sign-off is done with the same e-mail address as your committer e-mail address. + +Easyest way to do this is to use the git sign-off feature: + +**Sign-off your commit (directly)** + +```git commit --signoff -m "Commit message here"``` + +**Sign-off your last commit (if you forgot to sign-off)** + +```git commit --amend --signoff ``` + +**Force pushing last commit (if already pushed before sign-off)** + +```git push --force-with-lease origin your-branch-name-here ``` + From 2abf59ec2a9395452b0e8af9a7bc68b33464d1ef Mon Sep 17 00:00:00 2001 From: Christian Weiss Date: Thu, 12 Aug 2021 13:42:28 +0200 Subject: [PATCH 2/3] #675 sign-off instructions (--no-edit) Signed-off-by: Christian Weiss --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index f56e5b6..398dc3d 100644 --- a/README.md +++ b/README.md @@ -68,7 +68,7 @@ Easyest way to do this is to use the git sign-off feature: **Sign-off your last commit (if you forgot to sign-off)** -```git commit --amend --signoff ``` +```git commit --amend --no-edit --signoff ``` **Force pushing last commit (if already pushed before sign-off)** From 0103c7e9f206aec1aafdadebc0b8bc8e75c0f0f4 Mon Sep 17 00:00:00 2001 From: Christian Weiss Date: Sun, 22 Aug 2021 14:29:28 +0200 Subject: [PATCH 3/3] #675 typo Signed-off-by: Christian Weiss --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 398dc3d..7ecd907 100644 --- a/README.md +++ b/README.md @@ -48,7 +48,7 @@ Licence ======= Please feel free to use this data in any (usefull) way you want. -All code and content in this git repository is proviced unter [Creative Commons Zero 1.0 Universal](LICENSE) license to you. +All code and content in this git repository is provided under [Creative Commons Zero 1.0 Universal](LICENSE) license to you. Contribution =======