2008-11-08 13:03:59 +01:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
test_description='checkout switching away from an invalid branch'
|
|
|
|
|
|
|
|
. ./test-lib.sh
|
|
|
|
|
|
|
|
test_expect_success 'setup' '
|
|
|
|
echo hello >world &&
|
|
|
|
git add world &&
|
|
|
|
git commit -m initial
|
|
|
|
'
|
|
|
|
|
2009-01-03 13:07:32 +01:00
|
|
|
test_expect_success 'checkout should not start branch from a tree' '
|
|
|
|
test_must_fail git checkout -b newbranch master^{tree}
|
|
|
|
'
|
|
|
|
|
2008-11-08 13:03:59 +01:00
|
|
|
test_expect_success 'checkout master from invalid HEAD' '
|
2011-04-24 07:34:13 +02:00
|
|
|
echo $_z40 >.git/HEAD &&
|
2008-11-08 13:03:59 +01:00
|
|
|
git checkout master --
|
|
|
|
'
|
|
|
|
|
|
|
|
test_done
|