Answers for "git ignore .env files not working"

1

git ignore .env files not working

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"
Posted by: Guest on May-11-2021

Code answers related to "git ignore .env files not working"

Code answers related to "Javascript"

Browse Popular Code Answers by Language