From: René Scharfe Date: Thu, 7 Oct 2021 20:31:01 +0000 (+0200) Subject: t3905: show failure to ignore sub-repo X-Git-Tag: v2.34.0-rc0~48^2~2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=fc5e90b848e07cc3b8b0e590dbd261ee1b40ffb8;p=thirdparty%2Fgit.git t3905: show failure to ignore sub-repo "git stash" used to ignore sub-repositories until 6e773527b6 (sparse-index: convert from full to sparse, 2021-03-30). Add a test that demonstrates this regression. Reported-by: Robert Leftwich Signed-off-by: René Scharfe Signed-off-by: Junio C Hamano --- diff --git a/t/t3905-stash-include-untracked.sh b/t/t3905-stash-include-untracked.sh index 8314ab21d4..f213c7327e 100755 --- a/t/t3905-stash-include-untracked.sh +++ b/t/t3905-stash-include-untracked.sh @@ -405,4 +405,10 @@ test_expect_success 'stash show --include-untracked errors on duplicate files' ' test_i18ngrep "worktree and untracked commit have duplicate entries: tracked" err ' +test_expect_failure 'stash -u ignores sub-repository' ' + test_when_finished "rm -rf sub-repo" && + git init sub-repo && + git stash -u +' + test_done