summaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2015-05-19 20:17:50 (GMT)
committerJunio C Hamano <gitster@pobox.com>2015-05-19 20:17:51 (GMT)
commit20cf8b548ebd7d5ec98729b4bb8ae5af435a22ff (patch)
tree5744fa6cf8ffa26600bd154c9f0023bcd364bc10 /t
parentd0c692263f453f267ddd82b90b1a2fcff9d45f5f (diff)
parent099d2d86a8e17218aca31bf7c4070a820baf4baa (diff)
downloadgit-20cf8b548ebd7d5ec98729b4bb8ae5af435a22ff.zip
git-20cf8b548ebd7d5ec98729b4bb8ae5af435a22ff.tar.gz
git-20cf8b548ebd7d5ec98729b4bb8ae5af435a22ff.tar.bz2
Merge branch 'jc/gitignore-precedence'
core.excludesfile (defaulting to $XDG_HOME/git/ignore) is supposed to be overridden by repository-specific .git/info/exclude file, but the order was swapped from the beginning. This belatedly fixes it. * jc/gitignore-precedence: ignore: info/exclude should trump core.excludesfile
Diffstat (limited to 't')
-rwxr-xr-xt/t0008-ignores.sh10
1 files changed, 10 insertions, 0 deletions
diff --git a/t/t0008-ignores.sh b/t/t0008-ignores.sh
index 8dc6939..4ef5ed4 100755
--- a/t/t0008-ignores.sh
+++ b/t/t0008-ignores.sh
@@ -831,4 +831,14 @@ test_expect_success !MINGW,!CYGWIN 'correct handling of backslashes' '
test_cmp err.expect err
'
+test_expect_success 'info/exclude trumps core.excludesfile' '
+ echo >>global-excludes usually-ignored &&
+ echo >>.git/info/exclude "!usually-ignored" &&
+ >usually-ignored &&
+ echo "?? usually-ignored" >expect &&
+
+ git status --porcelain usually-ignored >actual &&
+ test_cmp expect actual
+'
+
test_done