git-ignore 不会忽略 node_modules

问题描述 投票:0回答:1

我在 gitignore 中包含 node_modules 但 github 桌面仍然建议更改推送。

reactjs git node-modules gitignore
1个回答
0
投票

如果您在 git 中已跟踪现有目录的那一刻将

node_modules/
添加到
.gitignore
文件,则需要一个额外的步骤让 git “忘记”此目录:

git rm --cached -r node_modules/
git commit
© www.soinside.com 2019 - 2024. All rights reserved.