]> git.ipfire.org Git - thirdparty/git.git/commit - t/t2400-worktree-add.sh
worktree add -B: do the checkout test before update branch
authorNguyễn Thái Ngọc Duy <pclouds@gmail.com>
Mon, 15 Feb 2016 13:35:33 +0000 (20:35 +0700)
committerJunio C Hamano <gitster@pobox.com>
Mon, 15 Feb 2016 23:54:13 +0000 (15:54 -0800)
commitbeb6f24beef67f6f825c8c99e408f67d23b784d4
tree943606669576499fc5e0fd4a3f1c05b7bc50c75f
parent0ebf4a2af3b72847327e977c5710fd123926570e
worktree add -B: do the checkout test before update branch

If --force is not given but -B is, we should not proceed if the given
branch is already checked out elsewhere. add_worktree() has this test,
but it kicks in too late when "git branch --force" is already
executed. As a result, even though we correctly refuse to create a new
worktree, we have already updated the branch and mess up the other
checkout.

Repeat the die_if_checked_out() test again for this specific case before
"git branch" runs.

Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
builtin/worktree.c
t/t2025-worktree-add.sh