metarhia/Example

Inconsistency between .gitignore and .gitkeep for application/tasks folder

aliendrew opened this issue · 1 comments

.gitignore is supposed to remove /application/tasks from being tracked, but the folder is still tracked because .gitkeep was added there before the .gitignore rule.
The solution is probably to use:
git rm -r --cached application/tasks
or remove /application/tasks from .gitignore to continue keeping this folder.