mirror of
https://github.com/git/git
synced 2024-10-28 19:25:47 +00:00
19 lines
347 B
Bash
19 lines
347 B
Bash
|
#!/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
|