git ignorer les fichiers .env ne fonctionnent pas

If you have already added the files to be tracked,
you need to remove them from tracking:

git rm env.local --cached
git rm env.staging --cached
git commit -m "Stopped tracking env.local, and env.staging"
Marty McFly