On Mon, 12 May 2014 at 13:13:02 +0800, David Maciejak wrote:
> ok got it, pthread cmd line was added only with magickwand support
> compilation.
> I added posix thread checks in configure file and recreate the patch I
> enclosed
Thanks.
> (sorry I can't use git send-email cmd).
Why not? You can clearly do more advanced stuff like coding wmiv.
Setting up git send-email is much more basic than that :-)
Some time ago I copied this answer which helped me. Perhaps you will
find it useful too.
From: Giuseppe Bilotta <giuseppe.bilotta <at> gmail.com>
Subject: Re: [Q] submitting patches from gmail
Newsgroups: gmane.comp.version-control.git
Date: 2008-10-18 12:50:51 GMT (2 days, 8 hours and 6 minutes ago)
On Saturday 18 October 2008 14:08, Leo Razoumov wrote:
> Hi Everyone,
> I wonder what is the preferred way to submit patches from a gmail account.
> Google mail auto wraps long lines and there is no way to change this setting.
> Safe way would be to use attachments. Are they allowed on git mailing list?
I've been sending patches from gmail for a while without problems. It took me
a while to find a working configruation, but I finally managed to do it using
msmtp. I have
[sendemail]
smtpserver = /usr/bin/msmtp
in my ~/.gitconfig
and the following ~/.msmtprc
======
# Example for a user configuration file
# Set default values for all following accounts.
defaults
tls on
tls_trust_file /etc/pki/tls/certs/ca-bundle.crt
logfile ~/.msmtp.log
# My email service
account gmail
host smtp.gmail.com
from yourgmailusername <at> gmail.com
auth on
user yourgmailusername
password yourgmailpassword
# Set a default account
account default : gmail
=========
And to send patches I just use something like
git send-email --compose --to "git <at> vger.kernel.org" --cc "whoever" 00*
diffstat:
git diff --stat HEAD~8..HEAD
--
To unsubscribe, send mail to [email protected].