Hi Danh, On Mon, 29 Jun 2020, Đoàn Trần Công Danh wrote: > On 2020-06-24 14:46:28+0000, Johannes Schindelin via GitGitGadget wrote: > > From: Johannes Schindelin > > > > In the context of many projects renaming their primary branch names away > > from `master`, Git wants to stop treating the `master` branch specially. > > > > Let's start with `git fmt-merge-msg`. > > > > Signed-off-by: Johannes Schindelin > > --- > > Hi Dscho, > > This change will also affect git-subtree test. Good point. The patch looks good. I wonder whether we should also address these: Documentation/git-rebase.txt:* Merge branch 'report-a-bug' Documentation/git-rebase.txt:* | Merge branch 'refactor-button' Documentation/git-switch.txt:HEAD is now at 9fc9555312 Merge branch 'cc/shared-index-permbits' Documentation/howto/using-signed-tag-in-pull-request.txt: Merge tag 'frotz-for-xyzzy' of example.com:/git/froboz.git/ Documentation/howto/using-signed-tag-in-pull-request.txt: Merge tag 'frotz-for-xyzzy' of example.com:/git/froboz.git/ t/t7606-merge-custom.sh:* (HEAD, master) Merge commit 'c3' The first three matches are in manual pages, the next two in technical documentation, and the last one in a comment in one of the test scripts. So none of them are super critical, but maybe there are different opinions? Ciao, Dscho > We'll need this patch for subtree: > ----------------8<------------------- > From: =?UTF-8?q?=C4=90o=C3=A0n=20Tr=E1=BA=A7n=20C=C3=B4ng=20Danh?= > > Date: Mon, 29 Jun 2020 22:56:37 +0700 > Subject: [PATCH] contrib: subtree: adjust test to change in fmt-merge-msg > MIME-Version: 1.0 > Content-Type: text/plain; charset=UTF-8 > Content-Transfer-Encoding: 8bit > > We're starting to stop treating `master' specially in fmt-merge-msg. > Adjust the test to reflect that change. > > Signed-off-by: Đoàn Trần Công Danh > --- > contrib/subtree/t/t7900-subtree.sh | 6 ++++-- > 1 file changed, 4 insertions(+), 2 deletions(-) > > diff --git a/contrib/subtree/t/t7900-subtree.sh b/contrib/subtree/t/t7900-subtree.sh > index 57ff4b25c1..53d7accf94 100755 > --- a/contrib/subtree/t/t7900-subtree.sh > +++ b/contrib/subtree/t/t7900-subtree.sh > @@ -196,7 +196,8 @@ test_expect_success 'merge new subproj history into sub dir/ with --prefix' ' > cd "$subtree_test_count" && > git fetch ./"sub proj" master && > git subtree merge --prefix="sub dir" FETCH_HEAD && > - check_equal "$(last_commit_message)" "Merge commit '\''$(git rev-parse FETCH_HEAD)'\''" > + check_equal "$(last_commit_message)" \ > + "Merge commit '\''$(git rev-parse FETCH_HEAD)'\'' into master" > ) > ' > > @@ -273,7 +274,8 @@ test_expect_success 'merge new subproj history into subdir/ with a slash appende > cd "$test_count" && > git fetch ./subproj master && > git subtree merge --prefix=subdir/ FETCH_HEAD && > - check_equal "$(last_commit_message)" "Merge commit '\''$(git rev-parse FETCH_HEAD)'\''" > + check_equal "$(last_commit_message)" \ > + "Merge commit '\''$(git rev-parse FETCH_HEAD)'\'' into master" > ) > ' > > -- > 2.27.0.111.gc72c7da667 > Danh >