Is there a way to have a git ignore file
to ignore all files with the name test in them?
I have files like this:
- css/test.css
- js/subfolder/test.js
- lib/main/sub/test.html
and so on.
I want git
to avoid adding or committing any files with the name test.
Update .gitignore
with test*
Also, read this for more information.