I have my folder directory such as
|- backup/
| -> other_folder/
| -> other_folder2/
| -> initdb.d/
| -> place_sql_files_here
And in my gitignore for the project I have
backup/*
!backup/initdb.d/place_sql_files_here
Yet it seems to still be ignoring the place_sql_files_here
file. How can I prevent this?