thomastuts
thomastuts

Reputation: 3539

Folder won't show up in Git but is not ignored

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...

Upvotes: 0

Views: 187

Answers (1)

thomastuts
thomastuts

Reputation: 3539

Easy solution: the Api module that was generated had the directory structure but no files in it yet, which caused it to not get picked up by Git.

Upvotes: 1

Related Questions