Name
       Git - instructions for configuring git(1)

Description
   git-format-patch(1)
       Send patches to the right addresses.

           $ git config --local format.to 'Alejandro Colomar <alx@kernel.org>';
           $ git config --local format.cc '<liba2i@lists.linux.dev>';

   git-send-email(1)
       If mutt(1) or neomutt(1) are configured in the system,
       git-send-email(1) can be configured to use any of them as a
       driver.  Recent versions of neomutt(1) can enable crypto with -C.

           $ git config --global \
                   sendemail.sendmailcmd 'neomutt -C -H - && true';
       or
           $ git config --global sendemail.sendmailcmd 'mutt -H - && true';

See also
       git-config(1)
       git-format-patch(1)
       git-send-email(1)
       mutt(1)
       neomutt(1)

       share/doc/contributing.d/*

       <https://git-send-email.io/>
       <https://neomutt.org/feature/cli-crypto>
       <https://git.kernel.org/pub/scm/docs/man-pages/man-pages.git/tree/CONTRIBUTING.d/git>
