Re: [PATCH] merge: indicate remote tracking branches in merge message
From: Jeff King <hidden>
Date: 2016-06-15 22:47:12
Subsystem:
the rest · Maintainer:
Linus Torvalds
On Sun, Aug 09, 2009 at 03:40:35AM -0400, Jeff King wrote:
quoted
Shouldn't it instead feed what it got from the end user to the dwim machinery, and make sure it dwims into refs/remotes/ hierarchy?I'm not sure that is all that different in practice than what is happening now. Mainly I did it the way I did so that I didn't touch the code path for detecting local branches. But assuming they are functionally identical, I think your patch is much more readable.
I tested your patch; the two methods aren't identical. In fact, yours fixes a bug. :) In t4202, we have a branch name and a tag name that are the same (octopus-a), and we "git merge octopus-a". This actually merges the tag, but because the branch name existed, we write "Merge branch 'octopus-a'" in the log, which is not true. With your patch, it does the right thing and says "Merge commit 'octopus-a'". The simple thing is to just update the "expect" text. Though the current behavior does show off the ability to collape the two branches and say Merge branches 'octopus-a' and 'octopus-b' instead of Merge commit 'octopus-a'; commit 'octopus-b' which we could preserve that by renaming the tags, as below. ---
diff --git a/t/t4202-log.sh b/t/t4202-log.sh
index 48e0088..9d0db2a 100755
--- a/t/t4202-log.sh
+++ b/t/t4202-log.sh@@ -306,13 +306,13 @@ test_expect_success 'set up more tangled history' ' git checkout master && git merge tangle && git checkout -b reach && - test_commit reach && + test_commit reach-1 && git checkout master && git checkout -b octopus-a && - test_commit octopus-a && + test_commit octopus-a-1 && git checkout master && git checkout -b octopus-b && - test_commit octopus-b && + test_commit octopus-b-1 && git checkout master && test_commit seventh && git merge octopus-a octopus-b
@@ -327,12 +327,12 @@ cat > expect <<\EOF *-. \ Merge branches 'octopus-a' and 'octopus-b' |\ \ \ * | | | seventh -| | * | octopus-b +| | * | octopus-b-1 | |/ / |/| | -| * | octopus-a +| * | octopus-a-1 |/ / -| * reach +| * reach-1 |/ * Merge branch 'tangle' |\