diff options
author | Junio C Hamano <gitster@pobox.com> | 2009-03-12 21:48:07 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2009-03-12 21:48:07 -0700 |
commit | fa711bc1983efca058ef6af19ffa808690b21d8c (patch) | |
tree | 2a2b98e69578c4d0adefbea7336a70083fb70397 /t | |
parent | de55390d36f30d5ef4be84eb9adba74f6903aa8e (diff) | |
parent | dd482eeac2524627beee323438dd1fdf34b4f97e (diff) | |
download | git-fa711bc1983efca058ef6af19ffa808690b21d8c.tar.gz git-fa711bc1983efca058ef6af19ffa808690b21d8c.tar.xz |
Merge branch 'fg/maint-1.6.0-exclude-bq' into maint-1.6.0
* fg/maint-1.6.0-exclude-bq:
Support "\" in non-wildcard exclusion entries
Diffstat (limited to 't')
-rwxr-xr-x | t/t3001-ls-files-others-exclude.sh | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/t/t3001-ls-files-others-exclude.sh b/t/t3001-ls-files-others-exclude.sh index 8666946b0..6a1711374 100755 --- a/t/t3001-ls-files-others-exclude.sh +++ b/t/t3001-ls-files-others-exclude.sh @@ -19,6 +19,9 @@ do >$dir/a.$i done done +>"#ignore1" +>"#ignore2" +>"#hidden" cat >expect <<EOF a.2 @@ -42,6 +45,9 @@ three/a.8 EOF echo '.gitignore +\#ignore1 +\#ignore2* +\#hid*n output expect .gitignore @@ -79,9 +85,10 @@ test_expect_success \ >output && test_cmp expect output' -cat > excludes-file << EOF +cat > excludes-file <<\EOF *.[1-8] e* +\#* EOF git config core.excludesFile excludes-file |