解决添加到.gitignore无效
如果将 .env.development
文件添加到 .gitignore
中,但仍然在 Git 提交中看到该文件被包含,可能有几个原因导致 .gitignore
无效:
文件已经被跟踪:如果 .env.development
文件在之前的提交中已经被跟踪(tracked),那么将它添加到 .gitignore
中不会自动将其从 Git 版本控制中移除。你需要使用以下命令将该文件从 Git 中移除:
git rm --cached .env.development
然后再次提交:
git commit -m "Remove .env.development from tracking"