为什么我的命令提示符在我写 "git add . " 时显示无穷无尽的警告?

Why is my command prompt showing endless warning when i write "git add . "?

我使用“git 添加”将文件添加到 git 暂存区。而且一直显示多个 warnings.Why 是这样吗?

warnings shown by command prompt

此错误的原因是名为 node_modules.

node_modules 包含许多文件 要解决这个问题,您必须添加一个名为 .gitignore 的文件。

要避免的步骤node_modules

创建文件.gitignore

/node_modules

如果你想要 node_modules

我想这将是无穷无尽的 我完成了一个我忽略的项目 node_modules,它工作正常