Reported-by: Ivan Zakharyaschev <imz@xxxxxxxxxxxx> Signed-off-by: Dmitry V. Levin <ldv@xxxxxxxxxxxx> --- This is just a regression test for the bug. t/t2018-checkout-new-branch-by-regexp.sh | 22 ++++++++++++++++++++++ 1 files changed, 22 insertions(+), 0 deletions(-) create mode 100755 t/t2018-checkout-new-branch-by-regexp.sh diff --git a/t/t2018-checkout-new-branch-by-regexp.sh b/t/t2018-checkout-new-branch-by-regexp.sh new file mode 100755 index 0000000..78e54c5 --- /dev/null +++ b/t/t2018-checkout-new-branch-by-regexp.sh @@ -0,0 +1,22 @@ +#!/bin/sh + +test_description='checkout -b new_branch :/regexp' + +. ./test-lib.sh + +test_expect_success setup ' + echo a > a && + git add a && + test_tick && + git commit -m first && + echo b > b && + git add b && + test_tick && + git commit -m second +' + +test_expect_success checkout ' + git checkout -b new_branch :/first +' + +test_done -- ldv -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html