t6300: avoid creating refs/heads/HEAD
authorJeff King <peff@peff.net>
Mon, 27 Feb 2017 09:29:31 +0000 (04:29 -0500)
committerJunio C Hamano <gitster@pobox.com>
Mon, 27 Feb 2017 19:33:44 +0000 (11:33 -0800)
In one test, we use "git checkout --orphan HEAD" to create
an unborn branch. Confusingly, the resulting branch is named
"refs/heads/HEAD". The original probably meant something
like:

git checkout --orphan orphaned-branch HEAD

Let's just use "orphaned-branch" here to make this less
confusing. Putting HEAD in the second argument is already
implied.

Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
t/t6300-for-each-ref.sh
index 039509a9cb94ef5c653df09e0453ac83157bf184..37e021f30ea66b0e613b4ad5246b49540116c432 100755 (executable)
@@ -558,7 +558,7 @@ test_expect_success 'do not dereference NULL upon %(HEAD) on unborn branch' '
        test_when_finished "git checkout master" &&
        git for-each-ref --format="%(HEAD) %(refname:short)" refs/heads/ >actual &&
        sed -e "s/^\* /  /" actual >expect &&
-       git checkout --orphan HEAD &&
+       git checkout --orphan orphaned-branch &&
        git for-each-ref --format="%(HEAD) %(refname:short)" refs/heads/ >actual &&
        test_cmp expect actual
 '