From: Junio C Hamano Date: Fri, 13 Mar 2009 04:48:07 +0000 (-0700) Subject: Merge branch 'fg/maint-1.6.0-exclude-bq' into maint-1.6.0 X-Git-Tag: v1.6.2.1~1^2^2~2 X-Git-Url: https://git.lorimer.id.au/gitweb.git/diff_plain/fa711bc1983efca058ef6af19ffa808690b21d8c?hp=de55390d36f30d5ef4be84eb9adba74f6903aa8e 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 --- diff --git a/dir.c b/dir.c index cfaa28ff23..04a4b9861e 100644 --- a/dir.c +++ b/dir.c @@ -139,7 +139,7 @@ int match_pathspec(const char **pathspec, const char *name, int namelen, int pre static int no_wildcard(const char *string) { - return string[strcspn(string, "*?[{")] == '\0'; + return string[strcspn(string, "*?[{\\")] == '\0'; } void add_exclude(const char *string, const char *base, diff --git a/t/t3001-ls-files-others-exclude.sh b/t/t3001-ls-files-others-exclude.sh index 8666946b02..6a17113745 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 <output && test_cmp expect output' -cat > excludes-file << EOF +cat > excludes-file <<\EOF *.[1-8] e* +\#* EOF git config core.excludesFile excludes-file