Revision 8165952517bf82b6a632cefc047ad14f36a74b25 authored by Junio C Hamano on 19 April 2010, 08:28:27 UTC, committed by Junio C Hamano on 19 April 2010, 08:28:27 UTC
* maint-1.6.6:
  MSVC: Fix build by adding missing termios.h dummy
2 parent s 03aa87e + b756864
Raw File
t2011-checkout-invalid-head.sh
#!/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 should not start branch from a tree' '
	test_must_fail git checkout -b newbranch master^{tree}
'

test_expect_success 'checkout master from invalid HEAD' '
	echo 0000000000000000000000000000000000000000 >.git/HEAD &&
	git checkout master --
'

test_done
back to top