summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2021-09-23 09:18:21 +0200
committerMatthias Beyer <mail@beyermatthias.de>2021-09-23 09:29:48 +0200
commit910d5584dfdb5ef472bf873ec2e6109d43f6beda (patch)
tree3402067e6c73221bf37d75e3a6224b2283f7aa45
parent72c20619999beb623f762a294c252d81c8f54081 (diff)
Remove section on patchmails
as we accept PRs now. Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
-rw-r--r--CONTRIBUTING.md32
1 files changed, 2 insertions, 30 deletions
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index 7d91a0b..109d6c0 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -5,11 +5,8 @@ This file describes how you can contribute to butido.
## Reporting issues / Questions
-If you have a question regarding butido, feel free to send an email to
-one of the following addresses
-
-* "matthias.beyer@atos.net"
-* or publicly to [the mailinglist]("~matthiasbeyer/butido@lists.sr.ht")
+If you have a question regarding butido, feel free to open an issue or write an
+email to the authors.
## Submitting patches
@@ -57,28 +54,3 @@ By that you agree to the
> this project or the open source license(s) involved.
-You can submit patches using [git send-email](https://git-send-email.io/)
-and send email to the above email addresses.
-
-For the lazy:
-
-```
-git format-patch \
- --subject-prefix=butido \
- --to="~matthiasbeyer/butido@lists.sr.ht" \
- --cc="matthias.beyer@atos.net" \
- --cover-letter \
- --numbered \
- --signoff \
- master..HEAD
-
-# Edit the cover letter
-$EDITOR ./0000-cover-letter.patch
-
-# And send the patchset
-git send-email \
- --no-chain-reply-to \
- --to="~matthiasbeyer/butido@lists.sr.ht" \
- --cc="matthias.beyer@atos.net" \
- ./0*patch
-```