Meta: Remove catchall lines in .gitignore (#4565)

These two lines caused this local .gitignore to supersede all inputs
in any files specified by a user's `core.excludesFile` configuration
since the first match was going to be `!*.*` for any file with a
decimal or any directory. `git check-ignore -v somefile` can be used to
test this.
This commit is contained in:
Nathan Lanza
2020-12-27 17:04:57 -05:00
committed by GitHub
parent f603128e55
commit bee1774b92

2
.gitignore vendored
View File

@@ -1,6 +1,4 @@
* *
!*.*
!*/
!Makefile !Makefile
!LICENSE !LICENSE
!Base/** !Base/**