mirror of
https://github.com/git/git.git
synced 2024-11-01 23:07:55 +01:00
323e00fd46
When using alternates, it is possible for HEAD to end up pointing to an invalid commit. git checkout should be able to recover from that situation without crashing. Signed-off-by: Alexandre Julliard <julliard@winehq.org> Signed-off-by: Junio C Hamano <gitster@pobox.com>
18 lines
347 B
Bash
Executable file
18 lines
347 B
Bash
Executable file
#!/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
|