]> granicus.if.org Git - git/commitdiff
t3033: avoid 'ambiguous refs' warning
authorJunio C Hamano <gitster@pobox.com>
Thu, 21 Apr 2016 18:52:33 +0000 (11:52 -0700)
committerJunio C Hamano <gitster@pobox.com>
Thu, 21 Apr 2016 18:52:33 +0000 (11:52 -0700)
Because "test_commit five" creates a commit and point it with a tag
'five', doing so on a branch whose name is 'five' will later result
in an 'ambiguous refs' warning.  Even though it is harmless because
all the later references are for the tag, there is no reason for the
branch to be called 'five'.  Give it a name that describes its
purpose more clearly, i.e. "newroot".

Signed-off-by: Junio C Hamano <gitster@pobox.com>
t/t3033-merge-toplevel.sh

index c1379b00c2efc99a700c75f5ce13b2248706cf4b..d314599428129d5759e3df5e991e5a1bb90960db 100755 (executable)
@@ -19,7 +19,7 @@ test_expect_success setup '
        test_commit three &&
        git checkout right &&
        test_commit four &&
-       git checkout --orphan five &&
+       git checkout --orphan newroot &&
        test_commit five &&
        git checkout master
 '