Skip to content

Commit be44a20

Browse files
committed
Merge branch 'jk/maint-stash-oob' into maint
* jk/maint-stash-oob: stash: fix false positive in the invalid ref test. stash: fix accidental apply of non-existent stashes Conflicts: t/t3903-stash.sh
2 parents 476e424 + 9355fc9 commit be44a20

File tree

2 files changed

+12
-16
lines changed

2 files changed

+12
-16
lines changed

git-stash.sh

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,7 @@ parse_flags_and_rev()
265265
b_tree=
266266
i_tree=
267267

268-
REV=$(git rev-parse --no-flags --symbolic "$@" 2>/dev/null)
268+
REV=$(git rev-parse --no-flags --symbolic "$@") || exit 1
269269

270270
FLAGS=
271271
for opt
@@ -311,16 +311,6 @@ parse_flags_and_rev()
311311
IS_STASH_LIKE=t &&
312312
test "$ref_stash" = "$(git rev-parse --symbolic-full-name "${REV%@*}")" &&
313313
IS_STASH_REF=t
314-
315-
if test "${REV}" != "${REV%{*\}}"
316-
then
317-
# maintainers: it would be better if git rev-parse indicated
318-
# this condition with a non-zero status code but as of 1.7.2.1 it
319-
# it did not. So, we use non-empty stderr output as a proxy for the
320-
# condition of interest.
321-
test -z "$(git rev-parse "$REV" 2>&1 >/dev/null)" || die "$REV does not exist in the stash log"
322-
fi
323-
324314
}
325315

326316
is_stash_like()

t/t3903-stash.sh

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,12 @@ test_expect_success 'parents of stash' '
3737
test_cmp output expect
3838
'
3939

40+
test_expect_success 'applying bogus stash does nothing' '
41+
test_must_fail git stash apply stash@{1} &&
42+
echo 1 >expect &&
43+
test_cmp expect file
44+
'
45+
4046
test_expect_success 'apply does not need clean working directory' '
4147
echo 4 >other-file &&
4248
git add other-file &&
@@ -557,11 +563,11 @@ test_expect_success 'invalid ref of the form stash@{n}, n >= N' '
557563
echo bar6 > file2 &&
558564
git add file2 &&
559565
git stash &&
560-
test_must_fail git drop stash@{1} &&
561-
test_must_fail git pop stash@{1} &&
562-
test_must_fail git apply stash@{1} &&
563-
test_must_fail git show stash@{1} &&
564-
test_must_fail git branch tmp stash@{1} &&
566+
test_must_fail git stash drop stash@{1} &&
567+
test_must_fail git stash pop stash@{1} &&
568+
test_must_fail git stash apply stash@{1} &&
569+
test_must_fail git stash show stash@{1} &&
570+
test_must_fail git stash branch tmp stash@{1} &&
565571
git stash drop
566572
'
567573

0 commit comments

Comments
 (0)