-
Hi, I need to exclude big files but I want to commit all files in "images" folder even if size is more than 1M. There are multiple "images" folders in many dynamic folders like "/users/me/2022_01_01/images/" "/users/me/2022_06_24/images/" grumphp: I've tried many options without success ... Anoyone have a solution ? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hello, This configuration uses the symfony Finder path() method:
It doesn't accept globs - but it does accept regular expressions. |
Beta Was this translation helpful? Give feedback.
Hello,
This configuration uses the symfony Finder path() method:
It doesn't accept globs - but it does accept regular expressions.
Also: you might want to drop the '/' in front - since that indicates an absolute path.