* Howto send many commits as mail-patches?
@ 2006-01-03 11:38 Sam Ravnborg
2006-01-03 17:24 ` Ryan Anderson
0 siblings, 1 reply; 2+ messages in thread
From: Sam Ravnborg @ 2006-01-03 11:38 UTC (permalink / raw)
To: git
Hi all.
I have a collection of commits in my GIT repository that I like to send
out to linux-kernel.
But my initial experiments with git-send-emails.perl fall out bad.
I did the following:
1) First I created a mbox with the patches:
git format-patch -n --mbox --stdout -M -B b286e39207237e2f6929959372bf66d9a8d05a82 > mbox
The mbox looked OK. -M -B were from the man page and since the patchset
includes a number of renames it made the mbox considerably smaller.
So I went on an tried to send the mails:
git-send-email.perl --from "Sam Ravnborg <sam@ravnborg.org>" --to "sam@ravnborg.org" --chain-reply-to "" mbox
It just send out two huge mails containing all of the mbox.
Also it cc:ed all people included in "Signed-off-by". That is sometimes
a nice feature but for testing I like it to be optional.
Can someone give me a nice howto so I can see how to send out the mails.
TIA,
Sam
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: Howto send many commits as mail-patches?
2006-01-03 11:38 Howto send many commits as mail-patches? Sam Ravnborg
@ 2006-01-03 17:24 ` Ryan Anderson
0 siblings, 0 replies; 2+ messages in thread
From: Ryan Anderson @ 2006-01-03 17:24 UTC (permalink / raw)
To: Sam Ravnborg; +Cc: git
On Tue, Jan 03, 2006 at 12:38:59PM +0100, Sam Ravnborg wrote:
> Hi all.
>
> I have a collection of commits in my GIT repository that I like to send
> out to linux-kernel.
> But my initial experiments with git-send-emails.perl fall out bad.
>
> I did the following:
>
> 1) First I created a mbox with the patches:
> git format-patch -n --mbox --stdout -M -B b286e39207237e2f6929959372bf66d9a8d05a82 > mbox
> The mbox looked OK. -M -B were from the man page and since the patchset
> includes a number of renames it made the mbox considerably smaller.
>
> So I went on an tried to send the mails:
>
> It just send out two huge mails containing all of the mbox.
> Also it cc:ed all people included in "Signed-off-by". That is sometimes
> a nice feature but for testing I like it to be optional.
>
> Can someone give me a nice howto so I can see how to send out the mails.
Try:
mkdir ../pending/
git format-patch -n --mbox -o ../pending/ -M -B b286e39207237e2f6929959372bf66d9a8d05a82
git-send-email.perl --from "Sam Ravnborg <sam@ravnborg.org>" --to "sam@ravnborg.org" --chain-reply-to "" ../pending/
With this method, you can examine the files in ../pending/, edit patch
comments if you want, add an "introductory" mail, etc.
The Signed-off-by: cc:ing is currently not something that can be
disabled, but you can do something like this to stop it temporarily:
(cut and pasted, so it probably won't directly apply)
diff --git a/git-send-email.perl b/git-send-email.perl
index ec1428d..9c7d0b8 100755
--- a/git-send-email.perl
+++ b/git-send-email.perl
@@ -322,7 +322,7 @@ foreach my $t (@files) {
}
} else {
$message .= $_;
- if (/^Signed-off-by: (.*)$/i) {
+ if (/^XSigned-off-by: (.*)$/i) {
my $c = $1;
chomp $c;
push @cc, $c;
Hope that helped,
--
Ryan Anderson
sometimes Pug Majere
^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2006-01-03 17:24 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-01-03 11:38 Howto send many commits as mail-patches? Sam Ravnborg
2006-01-03 17:24 ` Ryan Anderson
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 NNTP newsgroup(s).