I follow these steps to ignore some directory in my Git :
- I've create a .gitignore file (outside my .git directory)
- I've add my ignored directories and files
- I've add my .gitignore file onto my git index by "git add .gitignore"
But when I check my status, git always want to add directories and files I want to ignore...
My .git and .gitignore location
The file and directories I'd like to ignore, but which are not ignored by git
Can you help me to resolve this problem please ?