stash: fix git stash branch regression when branch creation fails
"git stash branch <branch> <stash>" started discarding the stash when the branch creation fails. It should have kept the stash intact when aborting. Signed-off-by: Jon Seymour <jon.seymour@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
parent
835d6a1f9f
commit
57693d03db
@ -446,9 +446,9 @@ apply_to_branch () {
|
|||||||
assert_stash_like "$@"
|
assert_stash_like "$@"
|
||||||
|
|
||||||
git checkout -b $branch $REV^ &&
|
git checkout -b $branch $REV^ &&
|
||||||
apply_stash "$@"
|
apply_stash "$@" && {
|
||||||
|
test -z "$IS_STASH_REF" || drop_stash "$@"
|
||||||
test -z "$IS_STASH_REF" || drop_stash "$@"
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
PARSE_CACHE='--not-parsed'
|
PARSE_CACHE='--not-parsed'
|
||||||
|
@ -545,7 +545,7 @@ test_expect_success 'invalid ref of the form stash@{n}, n >= N' '
|
|||||||
git stash drop
|
git stash drop
|
||||||
'
|
'
|
||||||
|
|
||||||
test_expect_failure 'stash branch should not drop the stash if the branch exists' '
|
test_expect_success 'stash branch should not drop the stash if the branch exists' '
|
||||||
git stash clear &&
|
git stash clear &&
|
||||||
echo foo >file &&
|
echo foo >file &&
|
||||||
git add file &&
|
git add file &&
|
||||||
|
Loading…
Reference in New Issue
Block a user