Skip to content

Commit fcbf164

Browse files
committed
Merge branch 'jk/maint-stash-oob'
* 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 29dba37 + 9355fc9 commit fcbf164

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
@@ -264,7 +264,7 @@ parse_flags_and_rev()
264264
b_tree=
265265
i_tree=
266266

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

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

325315
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 &&
@@ -549,11 +555,11 @@ test_expect_success 'invalid ref of the form stash@{n}, n >= N' '
549555
echo bar6 > file2 &&
550556
git add file2 &&
551557
git stash &&
552-
test_must_fail git drop stash@{1} &&
553-
test_must_fail git pop stash@{1} &&
554-
test_must_fail git apply stash@{1} &&
555-
test_must_fail git show stash@{1} &&
556-
test_must_fail git branch tmp stash@{1} &&
558+
test_must_fail git stash drop stash@{1} &&
559+
test_must_fail git stash pop stash@{1} &&
560+
test_must_fail git stash apply stash@{1} &&
561+
test_must_fail git stash show stash@{1} &&
562+
test_must_fail git stash branch tmp stash@{1} &&
557563
git stash drop
558564
'
559565

0 commit comments

Comments
 (0)