-2

Does anyone know of a system or library that can parse emails sent by git send-email? So ideally receive emails and automatically create branches or PRs?

0

2 Answers 2

3

You're looking for git am, "apply mail".

2
  • Thanks, I hadn't found that. But it's only part of the solution - you still need to connect to email, filter/parse them, etc.
    – parsley72
    Commented Jul 17, 2023 at 3:35
  • 1
    Any mail service should support IMAP and POP3, and there's any number of email clients that speak that and will save in mailbox/maildir format. That part's got nothing to do with Git.
    – jthill
    Commented Jul 17, 2023 at 3:46
-1

Initial results:

Patchwork

  • A web-based patch tracking system designed to facilitate the contribution and management of contributions to an open-source project.

Patchwork

  • The freedesktop.org edition of patchwork (a fork of the above).

libgitmail

  • A Rust library that can parse git-send-email generated email.

Not the answer you're looking for? Browse other questions tagged or ask your own question.