Skip to content

Commit efa5f82

Browse files
peffgitster
authored andcommitted
t: check that a pattern without trailing slash matches a directory
Prior to v1.8.1.1, with: git init echo content >foo && mkdir subdir && echo content >subdir/bar && echo "subdir export-ignore" >.gitattributes git add . && git commit -m one && git archive HEAD | tar tf - the resulting archive would contain only "foo" and ".gitattributes", not subdir. This was broken with a recent change that intended to allow "subdir/ export-ignore" to also exclude the directory, but instead ended up _requiring_ the trailing slash by mistake. A pattern "subdir" should match any path "subdir", whether it is a directory or a non-directory. A pattern "subdir/" insists that a path "subdir" must be a directory for it to match. This patch adds test not just for this simple case, but also for deeper cross-directory cases, as well as cases with wildcards. Signed-off-by: Jeff King <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent ab3aebc commit efa5f82

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

t/t5002-archive-attr-pattern.sh

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,25 @@ test_expect_success 'setup' '
2727
echo ignored-only-if-dir/ export-ignore >>.git/info/attributes &&
2828
git add ignored-only-if-dir &&
2929
30+
mkdir -p ignored-without-slash &&
31+
echo "ignored without slash" >ignored-without-slash/foo &&
32+
git add ignored-without-slash/foo &&
33+
echo "ignored-without-slash export-ignore" >>.git/info/attributes &&
34+
35+
mkdir -p wildcard-without-slash &&
36+
echo "ignored without slash" >wildcard-without-slash/foo &&
37+
git add wildcard-without-slash/foo &&
38+
echo "wild*-without-slash export-ignore" >>.git/info/attributes &&
39+
40+
mkdir -p deep/and/slashless &&
41+
echo "ignored without slash" >deep/and/slashless/foo &&
42+
git add deep/and/slashless/foo &&
43+
echo "deep/and/slashless export-ignore" >>.git/info/attributes &&
44+
45+
mkdir -p deep/with/wildcard &&
46+
echo "ignored without slash" >deep/with/wildcard/foo &&
47+
git add deep/with/wildcard/foo &&
48+
echo "deep/*t*/wildcard export-ignore" >>.git/info/attributes &&
3049
3150
mkdir -p one-level-lower/two-levels-lower/ignored-only-if-dir &&
3251
echo ignored by ignored dir >one-level-lower/two-levels-lower/ignored-only-if-dir/ignored-by-ignored-dir &&
@@ -49,6 +68,14 @@ test_expect_exists archive/not-ignored-dir/ignored-only-if-dir
4968
test_expect_exists archive/not-ignored-dir/
5069
test_expect_missing archive/ignored-only-if-dir/
5170
test_expect_missing archive/ignored-ony-if-dir/ignored-by-ignored-dir
71+
test_expect_missing archive/ignored-without-slash/ &&
72+
test_expect_missing archive/ignored-without-slash/foo &&
73+
test_expect_missing archive/wildcard-without-slash/
74+
test_expect_missing archive/wildcard-without-slash/foo &&
75+
test_expect_missing archive/deep/and/slashless/ &&
76+
test_expect_missing archive/deep/and/slashless/foo &&
77+
test_expect_missing archive/deep/with/wildcard/ &&
78+
test_expect_missing archive/deep/with/wildcard/foo &&
5279
test_expect_exists archive/one-level-lower/
5380
test_expect_missing archive/one-level-lower/two-levels-lower/ignored-only-if-dir/
5481
test_expect_missing archive/one-level-lower/two-levels-lower/ignored-ony-if-dir/ignored-by-ignored-dir

0 commit comments

Comments
 (0)