You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,
I’m having an issue with the ignoreMasks in CliRunner. The mask '.git*' ignores all .git files and directories, including those that start with git, such as gitlab-ci.yml.
Here’s the relevant code: public array $ignoreMasks = ['*.bak', '.svn', '.git*', 'Thumbs.db', '.DS_Store', '.idea'];
I need to:
Ignore .git directories and files.
Ensure files like gitlab-ci.yml are not ignored.
I’m struggling to find the correct mask to achieve this. Is it possible to configure this using the ignore key or another method without listing files explicitly?
Thanks!
The text was updated successfully, but these errors were encountered:
Version: v3.5.2
Hi,
I’m having an issue with the ignoreMasks in CliRunner. The mask '.git*' ignores all .git files and directories, including those that start with git, such as gitlab-ci.yml.
Here’s the relevant code:
public array $ignoreMasks = ['*.bak', '.svn', '.git*', 'Thumbs.db', '.DS_Store', '.idea'];
I need to:
I’m struggling to find the correct mask to achieve this. Is it possible to configure this using the ignore key or another method without listing files explicitly?
Thanks!
The text was updated successfully, but these errors were encountered: