当前git没有忽略node_modules文件夹。我已经尝试过以下命令:
git rm -r --cached node_modules
以上行的输出:
致命:pathspec'node_modules'与任何文件都不匹配
运行git status
时,得到以下输出:
$ git status
On branch master
No commits yet
Untracked files:
(use "git add <file>..." to include in what will be committed)
configs/
node_modules/
package-lock.json
package.json
routes/
server.js
nothing added to commit but untracked files present (use "git add" to track)
下次运行node_modules/
时,我不想包含我的git add .
文件夹。当前,它正在添加node_modules/
文件夹中的所有文件。
答案 0 :(得分:0)
您需要在节点模块所在的目录中添加 .gitignore 文件
并将其放入
# dependencies
/node_modules