Hi,
How to add an exception to .gitignore, like "ignore all the .dll files BUT myfile.dll"? Thanks
Use ! to negate the pattern:
!
*.dll !myfile.dll