Hi Junio, Junio C Hamano wrote: > Git 2.30 Release Notes (draft) > ============================== ... > Performance, Internal Implementation, Development Support etc. ... > * Adjust tests so that they won't scream when the default initial > branch name is changed to 'main'. ... > * Test scripts are being prepared to transition of the default branch > name to 'main'. These redundant entries were added in 7f7ebe054a (Third batch, 2020-11-02) and e4d83eee92 (Fourth batch, 2020-11-09), respectively. Assuming they aren't intentional (as a hat-tip to the amount of the effort involved in the fixes, perhaps? :) )... here's a patch to drop the first one in favor of the second, with a minor grammatical adjustment to make it read better. Of course, if it's less effort to make the change yourself than apply this trivial patch, don't hesitate to do so. -- >8 -- Subject: [PATCH] RelNotes/2.30.0: drop redundant mention of branch name test fixes While here, improve the grammar of the remaining entry. Signed-off-by: Todd Zullinger <tmz@xxxxxxxxx> --- Documentation/RelNotes/2.30.0.txt | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/Documentation/RelNotes/2.30.0.txt b/Documentation/RelNotes/2.30.0.txt index a9c930ef93..bfe6520074 100644 --- a/Documentation/RelNotes/2.30.0.txt +++ b/Documentation/RelNotes/2.30.0.txt @@ -119,9 +119,6 @@ Performance, Internal Implementation, Development Support etc. take a substring of test title, in addition to numbers, to name the test pieces to run. - * Adjust tests so that they won't scream when the default initial - branch name is changed to 'main'. - * Rewriting "git bisect" in C continues. * More preliminary tests have been added to document desired outcome @@ -136,7 +133,7 @@ Performance, Internal Implementation, Development Support etc. * The code to detect premature EOF in the sideband demultiplexer has been cleaned up. - * Test scripts are being prepared to transition of the default branch + * Test scripts are being prepared to transition the default branch name to 'main'. * "git fetch --depth=<n>" over the stateless RPC / smart HTTP -- Todd