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
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
Notes: sideshowbarker 2024-07-19 00:32:07 +09:00

2
.gitignore vendored
View file

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