I want to ignore all files whithin the Binaries
folder except dll files in that folder.
# Ignore all files and folders
Binaries/*
# Dont ignore dll files
!Binaries/*/*.dll
With this, all files and folders get ignored. Even dll files.
But i want to allow dll files. For example
Binaries/Win64/someName.dll
Should NOT be ignored.
Please help. P4 ignore file name is ".gitignore"