Related questions
.gitignore does not understand my folder wildcard on windows
I'm encountering a weird issue with .gitignore on Windows.
I want git to ignore all .exe files, except those in the Dependencies folder (and all subfolders).
So I have:
.gitignore:
*.exe
!/Dependencies/**/*.exe
This, unfortunately, does not work.
Meanwhile, this …