* Can cc's be included in patches sent by send-email
@ 2016-08-11 7:32 Philip Oakley
2016-08-11 7:58 ` Jacob Keller
0 siblings, 1 reply; 7+ messages in thread
From: Philip Oakley @ 2016-08-11 7:32 UTC (permalink / raw)
To: Git List
While 'git send-email' can have multiple --cc="addressee" options on the
command line, is it possible for the "cc:addressee<a@b.c>" to actually be
included in the patches that are to be sent, so that different patches can
have different addressee?
The fortmat-patch can include appropriate from lines, so it feels as if the
sender should be able to add cc: lines at the same place. Maybe its just
part of th docs I've missed.
This is for the workflow where the patch series (including cover letter) is
reviewed before send-email is invoked to send to all adressees.
--
Philip
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: Can cc's be included in patches sent by send-email
2016-08-11 7:32 Can cc's be included in patches sent by send-email Philip Oakley
@ 2016-08-11 7:58 ` Jacob Keller
2016-08-11 7:59 ` Jacob Keller
0 siblings, 1 reply; 7+ messages in thread
From: Jacob Keller @ 2016-08-11 7:58 UTC (permalink / raw)
To: Philip Oakley; +Cc: Git List
On Thu, Aug 11, 2016 at 12:32 AM, Philip Oakley <philipoakley@iee.org> wrote:
> While 'git send-email' can have multiple --cc="addressee" options on the
> command line, is it possible for the "cc:addressee<a@b.c>" to actually be
> included in the patches that are to be sent, so that different patches can
> have different addressee?
>
> The fortmat-patch can include appropriate from lines, so it feels as if the
> sender should be able to add cc: lines at the same place. Maybe its just
> part of th docs I've missed.
>
Yes, just put them in the body as tags below the signed-off-by. It
should be on by default unless you change supresscc or signedoffbycc
configuration.
Thanks,
Jake
> This is for the workflow where the patch series (including cover letter) is
> reviewed before send-email is invoked to send to all adressees.
>
> --
> Philip
> --
> To unsubscribe from this list: send the line "unsubscribe git" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: Can cc's be included in patches sent by send-email
2016-08-11 7:58 ` Jacob Keller
@ 2016-08-11 7:59 ` Jacob Keller
2016-08-11 17:57 ` Junio C Hamano
2016-08-11 18:57 ` Philip Oakley
0 siblings, 2 replies; 7+ messages in thread
From: Jacob Keller @ 2016-08-11 7:59 UTC (permalink / raw)
To: Philip Oakley; +Cc: Git List
On Thu, Aug 11, 2016 at 12:58 AM, Jacob Keller <jacob.keller@gmail.com> wrote:
> On Thu, Aug 11, 2016 at 12:32 AM, Philip Oakley <philipoakley@iee.org> wrote:
>> While 'git send-email' can have multiple --cc="addressee" options on the
>> command line, is it possible for the "cc:addressee<a@b.c>" to actually be
>> included in the patches that are to be sent, so that different patches can
>> have different addressee?
>>
>> The fortmat-patch can include appropriate from lines, so it feels as if the
>> sender should be able to add cc: lines at the same place. Maybe its just
>> part of th docs I've missed.
>>
>
> Yes, just put them in the body as tags below the signed-off-by. It
> should be on by default unless you change supresscc or signedoffbycc
> configuration.
>
> Thanks,
> Jake
>
See --suppress-cc or --signed-off-by-cc help in git help send-email.
Thanks,
Jake
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: Can cc's be included in patches sent by send-email
2016-08-11 7:59 ` Jacob Keller
@ 2016-08-11 17:57 ` Junio C Hamano
2016-08-11 17:58 ` Junio C Hamano
2016-08-11 19:11 ` Philip Oakley
2016-08-11 18:57 ` Philip Oakley
1 sibling, 2 replies; 7+ messages in thread
From: Junio C Hamano @ 2016-08-11 17:57 UTC (permalink / raw)
To: Jacob Keller; +Cc: Philip Oakley, Git List
Jacob Keller <jacob.keller@gmail.com> writes:
> On Thu, Aug 11, 2016 at 12:58 AM, Jacob Keller <jacob.keller@gmail.com> wrote:
>> On Thu, Aug 11, 2016 at 12:32 AM, Philip Oakley <philipoakley@iee.org> wrote:
>>> While 'git send-email' can have multiple --cc="addressee" options on the
>>> command line, is it possible for the "cc:addressee<a@b.c>" to actually be
>>> included in the patches that are to be sent, so that different patches can
>>> have different addressee?
>>>
>>> The fortmat-patch can include appropriate from lines, so it feels as if the
>>> sender should be able to add cc: lines at the same place. Maybe its just
>>> part of th docs I've missed.
>>>
>>
>> Yes, just put them in the body as tags below the signed-off-by. It
>> should be on by default unless you change supresscc or signedoffbycc
>> configuration.
>>
>> Thanks,
>> Jake
>>
>
> See --suppress-cc or --signed-off-by-cc help in git help send-email.
Also, those who do not want to see Cc: in headers (like me) can
instead edit the header part of the format-patch output to add Cc:
lines and they should be picked up.
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: Can cc's be included in patches sent by send-email
2016-08-11 17:57 ` Junio C Hamano
@ 2016-08-11 17:58 ` Junio C Hamano
2016-08-11 19:11 ` Philip Oakley
1 sibling, 0 replies; 7+ messages in thread
From: Junio C Hamano @ 2016-08-11 17:58 UTC (permalink / raw)
To: Jacob Keller; +Cc: Philip Oakley, Git List
On Thu, Aug 11, 2016 at 10:57 AM, Junio C Hamano <gitster@pobox.com> wrote:
>
> Also, those who do not want to see Cc: in headers (like me) can
Stupid typo that ruins the whole message. I meant "in FOOTERS".
> instead edit the header part of the format-patch output to add Cc:
> lines and they should be picked up.
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: Can cc's be included in patches sent by send-email
2016-08-11 17:57 ` Junio C Hamano
2016-08-11 17:58 ` Junio C Hamano
@ 2016-08-11 19:11 ` Philip Oakley
1 sibling, 0 replies; 7+ messages in thread
From: Philip Oakley @ 2016-08-11 19:11 UTC (permalink / raw)
To: Junio C Hamano, Jacob Keller; +Cc: Git List
From: "Junio C Hamano" <gitster@pobox.com>
> Jacob Keller <jacob.keller@gmail.com> writes:
>
>> On Thu, Aug 11, 2016 at 12:58 AM, Jacob Keller <jacob.keller@gmail.com>
>> wrote:
>>> On Thu, Aug 11, 2016 at 12:32 AM, Philip Oakley <philipoakley@iee.org>
>>> wrote:
>>>> While 'git send-email' can have multiple --cc="addressee" options on
>>>> the
>>>> command line, is it possible for the "cc:addressee<a@b.c>" to actually
>>>> be
>>>> included in the patches that are to be sent, so that different patches
>>>> can
>>>> have different addressee?
>>>>
>>>> The fortmat-patch can include appropriate from lines, so it feels as if
>>>> the
>>>> sender should be able to add cc: lines at the same place. Maybe its
>>>> just
>>>> part of th docs I've missed.
>>>>
>>>
>>> Yes, just put them in the body as tags below the signed-off-by. It
>>> should be on by default unless you change supresscc or signedoffbycc
>>> configuration.
>>>
>>> Thanks,
>>> Jake
>>>
>>
>> See --suppress-cc or --signed-off-by-cc help in git help send-email.
>
> Also, those who do not want to see Cc: in headers (like me) can
> instead edit the header part of the format-patch output to add Cc:
> lines and they should be picked up.
> --
When done via git gui, it looks like the Cc: is also included in the commit
message (first initial tries)
I'd probably place them after a --- break so that they don't get into the
applied commit message, but will carry around during my rebasing. I've still
to test if it works though.
Philip
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: Can cc's be included in patches sent by send-email
2016-08-11 7:59 ` Jacob Keller
2016-08-11 17:57 ` Junio C Hamano
@ 2016-08-11 18:57 ` Philip Oakley
1 sibling, 0 replies; 7+ messages in thread
From: Philip Oakley @ 2016-08-11 18:57 UTC (permalink / raw)
To: Jacob Keller; +Cc: Git List
From: "Jacob Keller" <jacob.keller@gmail.com>
> On Thu, Aug 11, 2016 at 12:58 AM, Jacob Keller <jacob.keller@gmail.com>
> wrote:
>> On Thu, Aug 11, 2016 at 12:32 AM, Philip Oakley <philipoakley@iee.org>
>> wrote:
>>> While 'git send-email' can have multiple --cc="addressee" options on the
>>> command line, is it possible for the "cc:addressee<a@b.c>" to actually
>>> be
>>> included in the patches that are to be sent, so that different patches
>>> can
>>> have different addressee?
>>>
>>> The fortmat-patch can include appropriate from lines, so it feels as if
>>> the
>>> sender should be able to add cc: lines at the same place. Maybe its just
>>> part of th docs I've missed.
>>>
>>
>> Yes, just put them in the body as tags below the signed-off-by. It
>> should be on by default unless you change supresscc or signedoffbycc
>> configuration.
>>
>> Thanks,
>> Jake
>>
>
> See --suppress-cc or --signed-off-by-cc help in git help send-email.
>
> Thanks,
> Jake
Thanks,
I'll look at that. It wasn't immediately obvious what to do.
Philip
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2016-08-11 19:11 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-08-11 7:32 Can cc's be included in patches sent by send-email Philip Oakley
2016-08-11 7:58 ` Jacob Keller
2016-08-11 7:59 ` Jacob Keller
2016-08-11 17:57 ` Junio C Hamano
2016-08-11 17:58 ` Junio C Hamano
2016-08-11 19:11 ` Philip Oakley
2016-08-11 18:57 ` Philip Oakley
Code repositories for project(s) associated with this public inbox
https://80x24.org/mirrors/git.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).