On Sun, Feb 28, 2016 at 10:43:04AM +0100, Samuel Thibault wrote: > Esa Peuha, on Sun 28 Feb 2016 11:00:07 +0200, wrote: > > > The attachment is the entire output of git format-patch; I think it's > > the best I can do when using Gmail to send mail. > > That will work fine, but it'll be tedious for you if you want to send a > patch series. You can easily send mail yourself without using gmail by > configuring a local mailer such as postfix, exim4, or even nullmailer, > using e.g. your ISP's SMTP smarthost. > > Samuel >
An alternative method is using `git send-email` with Gmail's SMTP. Here's the configuration lines I use: $ git config --global -l | grep sendemail sendemail.smtpserver=smtp.gmail.com sendemail.smtpserverport=587 sendemail.smtpencryption=tls sendemail.smtpuser=<username>@gmail.com