send-email: Use To: headers in patch files
commit21802cd32805b19fa32e8e3594ee3914733d53d3
authorStephen Boyd <bebarino@gmail.com>
Wed, 29 Sep 2010 07:26:44 +0000 (29 00:26 -0700)
committerJunio C Hamano <gitster@pobox.com>
Wed, 29 Sep 2010 20:24:04 +0000 (29 13:24 -0700)
tree615b12bf77171b28bae6576fe9c558d221566f84
parent442cb08fa0dca38c99cf1ff8a5654a95a5cad7a4
send-email: Use To: headers in patch files

It's a minor annoyance when you take the painstaking time to setup To:
headers for each patch in a large series, and then go out to send the
series with git-send-email and watch git ignore the To: headers in the
patch files.

Therefore, always add To: headers from a patch file to the To: headers
for that message. Keep the prompt for the blanket To: header so as to
not break scripts (and user expectations). This means even if a patch
has a To: header, git will prompt for the To: address. Otherwise, we'll
need to introduce interface breakage to either request the header for
each patch missing a To: header or default the header to whatever To:
address is found first (be it in a patch or from user input). Both of
these options don't seem very obvious/useful.

Reported-by: Viresh Kumar <viresh.kumar@st.com>
Signed-off-by: Stephen Boyd <bebarino@gmail.com>
Tested-by: Viresh Kumar <viresh.kumar@st.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
git-send-email.perl
t/t9001-send-email.sh