This one has stumped several team members on Windows, running Git. We've tried all sorts of explicit and wildcard entries in .gitignore however items in the hidden .vs/ folder as a part of Visual Studio 2015 RC keep getting committed. Since …
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 …