summaryrefslogtreecommitdiff
path: root/t/t3003-ls-files-exclude.sh
diff options
context:
space:
mode:
authorJeff King <peff@peff.net>2009-10-30 19:05:52 (GMT)
committerJunio C Hamano <gitster@pobox.com>2009-10-30 21:41:29 (GMT)
commit500348aa6859e436a890f5f5a7e0eeea8ef6c1de (patch)
treeeaf08ee1a24aa3b3ffb36bd25d047067b5517a76 /t/t3003-ls-files-exclude.sh
parentb5227d80aee5173bfda6aa43a890d03110b0df26 (diff)
downloadgit-500348aa6859e436a890f5f5a7e0eeea8ef6c1de.zip
git-500348aa6859e436a890f5f5a7e0eeea8ef6c1de.tar.gz
git-500348aa6859e436a890f5f5a7e0eeea8ef6c1de.tar.bz2
ls-files: unbreak "ls-files -i"
Commit b5227d8 changed the behavior of "ls-files" with respect to includes, but accidentally broke the "-i" option The original behavior was: 1. if no "-i" is given, cull all results according to --exclude* 2. if "-i" is given, show the inverse of (1) The broken behavior was: 1. if no "-i" is given: a. for "-o", cull results according to --exclude* b. for index files, always show all 2. if "-i" is given: a. for "-o", shows the inverse of (1a) b. for index files, always show all The fixed behavior keeps the new (1b) behavior introduced by b5227d8, but fixes the (2b) behavior to show only ignored files, not all files. This patch also tweaks the documentation. The original text was somewhat obscure in the first place, but it is also now inaccurate (the relationship between (1b) and (2b) is not quite a "reverse"). Signed-off-by: Jeff King <peff@peff.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/t3003-ls-files-exclude.sh')
-rwxr-xr-xt/t3003-ls-files-exclude.sh8
1 files changed, 8 insertions, 0 deletions
diff --git a/t/t3003-ls-files-exclude.sh b/t/t3003-ls-files-exclude.sh
index fc1e379..d5ec333 100755
--- a/t/t3003-ls-files-exclude.sh
+++ b/t/t3003-ls-files-exclude.sh
@@ -29,4 +29,12 @@ test_expect_success 'add file to gitignore' '
'
check_all_output
+test_expect_success 'ls-files -i lists only tracked-but-ignored files' '
+ echo content >other-file &&
+ git add other-file &&
+ echo file >expect &&
+ git ls-files -i --exclude-standard >output &&
+ test_cmp expect output
+'
+
test_done