I am using the following .gitignore file (global):
.idea
.svn
/media/covers/*
/media/tmp/*
/media/cache/*
/bin
/include
/lib
/local
*.log
*.pot
*.pyc
local_settings.py
So, media/covers, media/tmp, media/cacheI want to ignore all files and folders, but do not do these directories. This .gitignore file ignores media/covers, media/tmp, media/cachedirs, how can I fix it?
TIA!
source
share