You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
347 B
19 lines
347 B
16 years ago
|
#!/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
|
||
|
'
|
||
|
|
||
|
test_expect_success 'checkout master from invalid HEAD' '
|
||
|
echo 0000000000000000000000000000000000000000 >.git/HEAD &&
|
||
|
git checkout master --
|
||
|
'
|
||
|
|
||
|
test_done
|