-1

我使用 Express 生成器设置了我的项目,在 GitHub 上创建存储库时一切正常,我能够将其克隆到我的桌面并生成文件夹结构。当我在我的应用程序(Pug、node、express)上做了很多工作时,我想用“git add”在我的项目中添加所有文件。我在控制台中收到此错误:

 error: open("node_modules/.bin/acorn"): Invaliid argument
 error: unable to index file node_modules/.bin/ac/acorn
 fatal: updating files failed

由于我无法添加文件,因此我也无法提交或推送它们。

我正在运行 Windows 10。

编辑:如果我尝试将文件移动到 Windows 资源管理器中的新文件,我会收到此错误https://snag.gy/T1dI3M.jpg所以我想这与橡子包有关,但我不知道我是否可以删除。

4

1 回答 1

0

建议“node_modules”必须保存在“.gitignore”文件中。这样在执行推送操作时 node_modules 文件夹将被忽略并更新为 git。

于 2017-12-14T15:50:50.517 回答