Üstün Özgür

« Back to blog
  • Viewed
    times
  • Favorited 0 times
June 29, 2010

Sending patches with Git with Gmail

  • Edit
  • Delete
  • Tags
  • Autopost

If you want to use Git to submit patches via email over secure SMTP you will need to install the Net::SMTP::SSL module, if you don't have it installed already on your system.

sudo -H cpan Net::SMTP::SSL
via kbase.wincent.com

Then put the following in .gitconfig:

[sendemail]
smtpencryption = tls
smtpserver = smtp.gmail.com
smtpuser = yourmail@gmail.com
smtpserverport = 587

Comments (0)

Leave a comment...