@@ -1,5 +1,7 @@ Checklist (and a short version for the impatient):+ Commits:+ - make commits of logical units - check for unnecessary whitespace with "git diff --check" before committing
@@ -12,8 +14,13 @@ Checklist (and a short version for the impatient): commit message (or just use the option "-s" when committing) to confirm that you agree to the Developer's Certificate of Origin++ Patch:++ - send your patch to <git@vger.kernel.org> by using+ git-format-patch(1) with option "-M". See also+ git-send-email(1). - do not PGP sign your patch- - use "git format-patch -M" to create the patch - do not attach your patch, but read in the mail body, unless you cannot teach your mailer to leave the formatting of the patch alone.
From: Johannes Schindelin <hidden> Date: 2016-06-15 22:43:07
Hi,
On Mon, 30 Apr 2007, Jari Aalto wrote:
+ - send your patch to [off-list ref] by using
+ git-format-patch(1) with option "-M". See also
+ git-send-email(1).
- do not PGP sign your patch
- - use "git format-patch -M" to create the patch
NACK.
I never use send-email myself. There are even technical issues to my
excuse: sometimes I cannot send the mails from my machine. So, this should
not be a _replacement_ for `git format-patch -M && send mail manually`,
but only an _alternative_.
However, my impression was that many people had problems when first
sending patches with send-email. There should be _at least_ a word of
caution, that you should test the operation on something different than
the Git list first.
Ciao,
Dscho
From: Jari Aalto <hidden> Date: 2016-06-15 22:43:07
Johannes Schindelin [off-list ref] writes:
Hi,
On Mon, 30 Apr 2007, Jari Aalto wrote:
quoted
+ - send your patch to [off-list ref] by using
+ git-format-patch(1) with option "-M". See also
+ git-send-email(1).
- do not PGP sign your patch
- - use "git format-patch -M" to create the patch
NACK.
I never use send-email myself. There are even technical issues to my
excuse: sometimes I cannot send the mails from my machine. So, this should
not be a _replacement_ for `git format-patch -M && send mail manually`,
but only an _alternative_.
However, my impression was that many people had problems when first
sending patches with send-email. There should be _at least_ a word of
caution, that you should test the operation on something different than
the Git list first.
Is this workding okay?
- send your patch to [off-list ref] by using
git-format-patch(1) with option "-M". If you use
git-send-email(1), please test it first by sending
email to yourself.
Jari
Is this workding okay?
- send your patch to [off-list ref] by using
git-format-patch(1) with option "-M". If you use
git-send-email(1), please test it first by sending
email to yourself.
I don't want to seem picky, but that wording suggests to me that the -M
option to format-patch magically sends patches to the list. Why not just
have:
- use "git format-patch -M" to create the patch
- send your patch to [off-list ref]. If you use
git-send-email(1), please test it first by sending
email to yourself.
--
Julian
---
My mother loved children -- she would have given anything if I had been one.
-- Groucho Marx
From: Johannes Schindelin <hidden> Date: 2016-06-15 22:43:07
Hi,
On Mon, 30 Apr 2007, Julian Phillips wrote:
On Mon, 30 Apr 2007, Jari Aalto wrote:
quoted
Is this workding okay?
- send your patch to [off-list ref] by using
git-format-patch(1) with option "-M". If you use
git-send-email(1), please test it first by sending
email to yourself.
I don't want to seem picky, but that wording suggests to me that the -M
option to format-patch magically sends patches to the list. Why not just
have:
- use "git format-patch -M" to create the patch
- send your patch to [off-list ref]. If you use
git-send-email(1), please test it first by sending
email to yourself.
@@ -1,5 +1,7 @@ Checklist (and a short version for the impatient):+ Commits:+ - make commits of logical units - check for unnecessary whitespace with "git diff --check" before committing
@@ -12,8 +14,14 @@ Checklist (and a short version for the impatient): commit message (or just use the option "-s" when committing) to confirm that you agree to the Developer's Certificate of Origin- - do not PGP sign your patch++ Patch:+ - use "git format-patch -M" to create the patch+ - send your patch to <git@vger.kernel.org>. If you use+ git-send-email(1), please test it first by sending+ email to yourself.+ - do not PGP sign your patch - do not attach your patch, but read in the mail body, unless you cannot teach your mailer to leave the formatting of the patch alone.
From: Junio C Hamano <hidden> Date: 2016-06-15 22:43:07
Johannes Schindelin [off-list ref] writes:
However, my impression was that many people had problems when first
sending patches with send-email. There should be _at least_ a word of
caution, that you should test the operation on something different than
the Git list first.
Also an EXAMPLES section to Documentation/git-send-email.txt
would be useful.