diff options
author | Junio C Hamano <gitster@pobox.com> | 2012-01-30 12:10:08 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2012-02-06 16:32:15 -0800 |
commit | abe199808c6586047fb7255b80e3d17ffc26bf6c (patch) | |
tree | bf13d37ebb63f0448d5cbb2bcb2e2212ff990d4a /t/t2015-checkout-unborn.sh | |
parent | 04f6785a089e552585ba022f9d9054eca385ca67 (diff) | |
download | git-abe199808c6586047fb7255b80e3d17ffc26bf6c.tar.gz |
git checkout -b: allow switching out of an unborn branchjc/checkout-out-of-unborn
Running "git checkout -b another" immediately after "git init" when you do
not even have a commit on 'master' fails with:
$ git checkout -b another
fatal: You are on a branch yet to be born
This is unnecessary, if we redefine "git checkout -b $name" that does not
take any $start_point (which has to be a commit) as "I want to check out a
new branch $name from the state I am in".
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/t2015-checkout-unborn.sh')
-rwxr-xr-x | t/t2015-checkout-unborn.sh | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/t/t2015-checkout-unborn.sh b/t/t2015-checkout-unborn.sh index c551d39a66..6352b74e2e 100755 --- a/t/t2015-checkout-unborn.sh +++ b/t/t2015-checkout-unborn.sh @@ -1,6 +1,6 @@ #!/bin/sh -test_description='checkout from unborn branch protects contents' +test_description='checkout from unborn branch' . ./test-lib.sh test_expect_success 'setup' ' @@ -37,4 +37,13 @@ test_expect_success 'checkout from unborn merges identical index contents' ' git checkout -b new origin ' +test_expect_success 'checking out another branch from unborn state' ' + git checkout --orphan newroot && + git checkout -b anothername && + test_must_fail git show-ref --verify refs/heads/newroot && + git symbolic-ref HEAD >actual && + echo refs/heads/anothername >expect && + test_cmp expect actual +' + test_done |