this post was submitted on 16 Aug 2023
53 points (93.4% liked)

Asklemmy

43159 readers
1915 users here now

A loosely moderated place to ask open-ended questions

Search asklemmy ๐Ÿ”

If your post meets the following criteria, it's welcome here!

  1. Open-ended question
  2. Not offensive: at this point, we do not have the bandwidth to moderate overtly political discussions. Assume best intent and be excellent to each other.
  3. Not regarding using or support for Lemmy: context, see the list of support communities and tools for finding communities below
  4. Not ad nauseam inducing: please make sure it is a question that would be new to most members
  5. An actual topic of discussion

Looking for support?

Looking for a community?

~Icon~ ~by~ ~@Double_[email protected]~

founded 5 years ago
MODERATORS
 

What are advantages of it and also how said mailing list works? (In case of software development)

top 6 comments
sorted by: hot top controversial new old
[โ€“] [email protected] 41 points 1 year ago

Git was specifically CREATED to facilitate this exact mailing list workflow.

[โ€“] [email protected] 31 points 1 year ago* (last edited 1 year ago)

With git you don't have to push and pull to a repo, it also works by sending signed commits over any method you want.

Linux development includes a large number of contributors who use email. Git was originally created specifically for Linux development so of course it caters to this approach.

There's also the fact that the lead devs for Linux serve as a clearing-house for patches, so receiving them over email with explanations and everything helps them decide what makes it in.

Pull requests are not the only way of doing things. Generally speaking git can do a lot of workflows and architectures but most people are only familiar with gitflow and PRs.

[โ€“] masterairmagic 28 points 1 year ago (1 children)

Probably because it works and there hasn't been a strong reason to change it.

[โ€“] [email protected] 3 points 1 year ago (1 children)

It would work better under these modern methods, but the fallout during changing would be too much to handle

[โ€“] masterairmagic 3 points 1 year ago

define better

[โ€“] [email protected] 10 points 1 year ago

It's obvious in the case of git, git development occurred before gitlab existed.