I have the following folder structure:
public
media
catalog
product
category
private
tmp
var
test
I want to gitignore everything in the media
directory except for catalog/category
and private
My gitignore I am trying is:
public/media/*
!public/media/catalog/category/
!public/media/private
But it doesn't work. Any new files added to the category
or private
directories are not available to add.
I could just git add force but I would like this done through the gitignore if possible