Skip to content

Commit

Permalink
Merge branch 'fg/maint-exclude-bq' into maint
Browse files Browse the repository at this point in the history
* fg/maint-exclude-bq:
  Support "\" in non-wildcard exclusion entries
  • Loading branch information
Junio C Hamano committed Mar 11, 2009
2 parents bbc6a14 + dd482ee commit 5f7b338
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dir.c
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ int match_pathspec(const char **pathspec, const char *name, int namelen,

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,
Expand Down
9 changes: 8 additions & 1 deletion t/t3001-ls-files-others-exclude.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@ do
>$dir/a.$i
done
done
>"#ignore1"
>"#ignore2"
>"#hidden"

cat >expect <<EOF
a.2
Expand All @@ -42,6 +45,9 @@ three/a.8
EOF

echo '.gitignore
\#ignore1
\#ignore2*
\#hid*n
output
expect
.gitignore
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 5f7b338

Please sign in to comment.