Is there a way to limit the file types tracked by git by specifying a set of valid file types in .gitignore?
I want to be able to limit the types of files that were sent to my compiled directory. I understand that the parser is not a regular expression, but I would like something like this.
!src/(*.js|*.html|*.css)
source share