ls-files: excludes should not impact tracked files
commitb5227d80aee5173bfda6aa43a890d03110b0df26
authorJeff King <peff@peff.net>
Mon, 12 Oct 2009 05:11:57 +0000 (12 01:11 -0400)
committerJunio C Hamano <gitster@pobox.com>
Mon, 12 Oct 2009 23:12:49 +0000 (12 16:12 -0700)
tree4e48d89e4bdcceeb9f5ae61e82b08df234519455
parentf01f1099f40f24fe6f7802185340a6fa3a3d4f35
ls-files: excludes should not impact tracked files

In all parts of git, .gitignore and other exclude files
impact only how we treat untracked files; they should have
no effect on files listed in the index.

This behavior was originally implemented very early on in
9ff768e, but only for --exclude-from. Later, commit 63d285c
accidentally caused us to trigger the behavior for
--exclude-per-directory.

This patch totally ignores excludes for files found in the
index. This means we are reversing the original intent of
9ff768e, while at the same time fixing the accidental
behavior of 63d285c. This is a good thing, though, as the
way that 9ff768e behaved does not really make sense with the
way exclusions are used in modern git.

Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
builtin-ls-files.c
t/t3003-ls-files-exclude.sh [new file with mode: 0755]