I have the following structure:
nbproject
public_html
build
index.min.html
style.min.css
index.html
style.html
build
dist
My .gitignore
to ignore the Netbeans configuration files looks like this:
nbproject/
nbproject/private/
build/
nbbuild/
dist/
nbdist/
nbactions.xml
nb-configuration.xml
The problem is that it is ignoring all directories with build , including what is inside the "public_html" folder that should not be ignored.
How do I stop ignoring this directory?