-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'jc/spell-id-in-both-caps-in-message-id'
Consistently spell "Message-ID" as such, not "Message-Id". * jc/spell-id-in-both-caps-in-message-id: e-mail workflow: Message-ID is spelled with ID in both capital letters
- Loading branch information
Showing
15 changed files
with
75 additions
and
75 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -1171,21 +1171,21 @@ between your last version and now, if it's something significant. You do not | |
need the exact same body in your second cover letter; focus on explaining to | ||
reviewers the changes you've made that may not be as visible. | ||
|
||
You will also need to go and find the Message-Id of your previous cover letter. | ||
You will also need to go and find the Message-ID of your previous cover letter. | ||
You can either note it when you send the first series, from the output of `git | ||
send-email`, or you can look it up on the | ||
https://lore.kernel.org/git[mailing list]. Find your cover letter in the | ||
archives, click on it, then click "permalink" or "raw" to reveal the Message-Id | ||
archives, click on it, then click "permalink" or "raw" to reveal the Message-ID | ||
header. It should match: | ||
|
||
---- | ||
Message-Id: <[email protected]> | ||
Message-ID: <[email protected]> | ||
---- | ||
|
||
Your Message-Id is `<[email protected]>`. This example will be used | ||
below as well; make sure to replace it with the correct Message-Id for your | ||
**previous cover letter** - that is, if you're sending v2, use the Message-Id | ||
from v1; if you're sending v3, use the Message-Id from v2. | ||
Your Message-ID is `<[email protected]>`. This example will be used | ||
below as well; make sure to replace it with the correct Message-ID for your | ||
**previous cover letter** - that is, if you're sending v2, use the Message-ID | ||
from v1; if you're sending v3, use the Message-ID from v2. | ||
|
||
While you're looking at the email, you should also note who is CC'd, as it's | ||
common practice in the mailing list to keep all CCs on a thread. You can add | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -103,7 +103,7 @@ test_expect_success setup ' | |
git format-patch --stdout first >patch1 && | ||
{ | ||
echo "Message-Id: <[email protected]>" && | ||
echo "Message-ID: <[email protected]>" && | ||
echo "X-Fake-Field: Line One" && | ||
echo "X-Fake-Field: Line Two" && | ||
echo "X-Fake-Field: Line Three" && | ||
|
@@ -942,7 +942,7 @@ test_expect_success 'am --message-id really adds the message id' ' | |
git am --message-id patch1.eml && | ||
test_path_is_missing .git/rebase-apply && | ||
git cat-file commit HEAD | tail -n1 >actual && | ||
grep Message-Id patch1.eml >expected && | ||
grep Message-ID patch1.eml >expected && | ||
test_cmp expected actual | ||
' | ||
|
||
|
@@ -954,7 +954,7 @@ test_expect_success 'am.messageid really adds the message id' ' | |
git am patch1.eml && | ||
test_path_is_missing .git/rebase-apply && | ||
git cat-file commit HEAD | tail -n1 >actual && | ||
grep Message-Id patch1.eml >expected && | ||
grep Message-ID patch1.eml >expected && | ||
test_cmp expected actual | ||
' | ||
|
||
|
@@ -965,7 +965,7 @@ test_expect_success 'am --message-id -s signs off after the message id' ' | |
git am -s --message-id patch1.eml && | ||
test_path_is_missing .git/rebase-apply && | ||
git cat-file commit HEAD | tail -n2 | head -n1 >actual && | ||
grep Message-Id patch1.eml >expected && | ||
grep Message-ID patch1.eml >expected && | ||
test_cmp expected actual | ||
' | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ From: A U Thor <[email protected]> | |
To: [email protected] | ||
Subject: [PATCH v2] sample | ||
Date: Mon, 3 Aug 2020 22:40:55 +0700 | ||
Message-Id: <[email protected]> | ||
Message-ID: <[email protected]> | ||
Content-Type: text/plain; charset="utf-8" | ||
Content-Transfer-Encoding: base64 | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ message: | |
|
||
From: Nit Picker <[email protected]> | ||
Subject: foo is too old | ||
Message-Id: <[email protected]> | ||
Message-ID: <[email protected]> | ||
|
||
Hopefully this would fix the problem stated there. | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ message: | |
|
||
From: Nit Picker <[email protected]> | ||
Subject: foo is too old | ||
Message-Id: <[email protected]> | ||
Message-ID: <[email protected]> | ||
|
||
Hopefully this would fix the problem stated there. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,4 +5,4 @@ docutils заменён на python-docutils | |
python-docutils. В то время как сам rest2web не нужен. | ||
|
||
Signed-off-by: Dmitriy Blinov <[email protected]> | ||
Message-Id: <[email protected]> | ||
Message-ID: <[email protected]> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ From: A U Thor <[email protected]> | |
To: [email protected] | ||
Subject: [PATCH v2] sample | ||
Date: Mon, 3 Aug 2020 22:40:55 +0700 | ||
Message-Id: <[email protected]> | ||
Message-ID: <[email protected]> | ||
Content-Type: text/plain; charset="utf-8" | ||
Content-Transfer-Encoding: base64 | ||
|
||
|
@@ -27,7 +27,7 @@ From: A U Thor <[email protected]> | |
To: [email protected] | ||
Subject: [PATCH v2] sample | ||
Date: Mon, 3 Aug 2020 22:40:55 +0700 | ||
Message-Id: <[email protected]> | ||
Message-ID: <[email protected]> | ||
Content-Type: text/plain; charset="utf-8" | ||
Content-Transfer-Encoding: base64 | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -35,7 +35,7 @@ message: | |
|
||
From: Nit Picker <[email protected]> | ||
Subject: foo is too old | ||
Message-Id: <[email protected]> | ||
Message-ID: <[email protected]> | ||
|
||
Hopefully this would fix the problem stated there. | ||
|
||
|
@@ -78,7 +78,7 @@ message: | |
|
||
From: Nit Picker <[email protected]> | ||
Subject: foo is too old | ||
Message-Id: <[email protected]> | ||
Message-ID: <[email protected]> | ||
|
||
Hopefully this would fix the problem stated there. | ||
|
||
|
@@ -508,7 +508,7 @@ From [email protected] Wed Nov 12 17:54:41 2008 | |
From: Dmitriy Blinov <[email protected]> | ||
To: [email protected] | ||
Date: Wed, 12 Nov 2008 17:54:41 +0300 | ||
Message-Id: <[email protected]> | ||
Message-ID: <[email protected]> | ||
X-Mailer: git-send-email 1.5.6.5 | ||
MIME-Version: 1.0 | ||
Content-Type: text/plain; | ||
|
Oops, something went wrong.