我的 Mern 应用程序有一个 .gitignore 文件。
我想忽略所有
node_modules
(在客户端和服务器),但我只能忽略客户端的node_modules。它也不会忽略 .env
文件。可能是什么原因?有人可以回答我吗
您可以尝试一次从缓存中删除 .env 和 node_module 一次
git rm .env --cached
git rm -r --cached .
也对于
node_module
你可以尝试保留
/node_module
node_module
.env
或者尝试一下
**node_modules