From bee1774b9253e8507b2f94762db3f83f82ef7521 Mon Sep 17 00:00:00 2001 From: Nathan Lanza Date: Sun, 27 Dec 2020 17:04:57 -0500 Subject: [PATCH] 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. --- .gitignore | 2 -- 1 file changed, 2 deletions(-) diff --git a/.gitignore b/.gitignore index 7237affb42..2d7d0b5a91 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,4 @@ * -!*.* -!*/ !Makefile !LICENSE !Base/**