I have a sub-directory called ".gitignore" in one of my directories called "Database", which I want git to ignore, so I listed it in my .gitingore file.
.gitignore:
[Bb]in/
[Dd]ebug/
[Rr]elease/
.gitignore/
When I perform a command like git status Database, i get the following warning:
warning: unable to access 'Database/.gitignore': Permission denied
Can anyone please help me understand what I can do to get rid of this warning?
PS: I verified folder permissions on both "Database" and ".gitingore" were the same.
PS: I am running git on Windows 8. I don't think this matters.