aboutsummaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2008-11-09 10:56:26 -0800
committerJunio C Hamano <gitster@pobox.com>2008-11-09 10:56:26 -0800
commita9645b780b698703cd7dee25051d6ce39b0544c6 (patch)
tree4a5d6f044bfa66ce73b105089813a593637cbf1c /t
parentd2d188d92203997d260e8a21695b85c18b002d8f (diff)
parent5bcce8494a2ee09250404b8b086cbd62f9506703 (diff)
downloadgit-a9645b780b698703cd7dee25051d6ce39b0544c6.tar.gz
git-a9645b780b698703cd7dee25051d6ce39b0544c6.tar.xz
Merge branch 'maint'
* maint: Documentation: bisect: change a few instances of "git-cmd" to "git cmd" Documentation: rev-list: change a few instances of "git-cmd" to "git cmd" checkout: Don't crash when switching away from an invalid branch.
Diffstat (limited to 't')
-rwxr-xr-xt/t2011-checkout-invalid-head.sh18
1 files changed, 18 insertions, 0 deletions
diff --git a/t/t2011-checkout-invalid-head.sh b/t/t2011-checkout-invalid-head.sh
new file mode 100755
index 000000000..764bb0a6b
--- /dev/null
+++ b/t/t2011-checkout-invalid-head.sh
@@ -0,0 +1,18 @@
+#!/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