-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?

parsley72
  • 8,449
  • 8
  • 65
  • 98

2 Answers2

3

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

jthill
  • 55,082
  • 5
  • 77
  • 137
  • 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 Jul 17 '23 at 03: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 Jul 17 '23 at 03: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.
parsley72
  • 8,449
  • 8
  • 65
  • 98