2008-11-08 12:03:59 +00: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 12:07:32 +00:00
|
|
|
test_expect_success 'checkout should not start branch from a tree' '
|
|
|
|
test_must_fail git checkout -b newbranch master^{tree}
|
|
|
|
'
|
|
|
|
|
2008-11-08 12:03:59 +00:00
|
|
|
test_expect_success 'checkout master from invalid HEAD' '
|
2011-04-24 05:34:13 +00:00
|
|
|
echo $_z40 >.git/HEAD &&
|
2008-11-08 12:03:59 +00:00
|
|
|
git checkout master --
|
|
|
|
'
|
|
|
|
|
|
|
|
test_done
|