summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2015-06-25 23:03:26 -0700
committerJunio C Hamano <gitster@pobox.com>2015-06-25 23:03:27 -0700
commit351d06df519ee405a1926e0c6ee34d6a1dba6b46 (patch)
tree10b8b7571b43748a993d2aa5d5eba2d1801c0ff1
parentb1f0802e9127b117bae7a4cfdc81495f7a9a09f3 (diff)
parent19376104a8251a7e6c56579cdcd2eb0a106d1fd6 (diff)
downloadgit-351d06df519ee405a1926e0c6ee34d6a1dba6b46.tar.gz
Merge branch 'jk/stash-require-clean-index' into maint
A hotfix for the topic already in 'master'. * jk/stash-require-clean-index: Revert "stash: require a clean index to apply"
-rwxr-xr-xgit-stash.sh2
-rwxr-xr-xt/t3903-stash.sh7
2 files changed, 0 insertions, 9 deletions
diff --git a/git-stash.sh b/git-stash.sh
index 0fddd5424b..23bd1d3db2 100755
--- a/git-stash.sh
+++ b/git-stash.sh
@@ -457,8 +457,6 @@ apply_stash () {
assert_stash_like "$@"
git update-index -q --refresh || die "$(gettext "unable to refresh index")"
- git diff-index --cached --quiet --ignore-submodules HEAD -- ||
- die "$(gettext "Cannot apply stash: Your index contains uncommitted changes.")"
# current index state
c_tree=$(git write-tree) ||
diff --git a/t/t3903-stash.sh b/t/t3903-stash.sh
index 7396ca9911..f5f18b7d21 100755
--- a/t/t3903-stash.sh
+++ b/t/t3903-stash.sh
@@ -45,13 +45,6 @@ test_expect_success 'applying bogus stash does nothing' '
test_cmp expect file
'
-test_expect_success 'apply requires a clean index' '
- test_when_finished "git reset --hard" &&
- echo changed >other-file &&
- git add other-file &&
- test_must_fail git stash apply
-'
-
test_expect_success 'apply does not need clean working directory' '
echo 4 >other-file &&
git stash apply &&