I have a folder called modules in my project (a Zend 1.12.3 project). The path is application\modules. Everything in the application directory commits just fine and shows up in Git, apart from the modules directory. It's not ignored by the project's .gitignore file:
public/styles/.sass-cache
Nor is it being ignored by my global .gitignore file:
.idea
app/logs/*
web/uploads/*
workspace.xml
Does anyone have any idea why the modules folder isn't showing up in the directory? This is really annoying since modules are an integral part of Zend...
