我是GitHub的新手,我想通过创建存储库来在github上托管我的代码。所以,我按照以下步骤操作:
使用" git add filename / foldername"添加文件命令然后所有其他文件夹/文件被添加,但当我尝试添加" node_modules"我的项目文件夹,我收到了这个错误:
fatal: unable to stat 'node_modules/karma/node_modules/gruntconventionalchangelog/node_modules/conventionalchangelog/node_modules/lodash.assign/node_modules/lodash._basecreatecallback/node_modules/lodash._setbinddata/node_modules/lodash.noop/LICENSE.txt': No such file or directory
注意:我可以通过执行相同的命令添加所有其他文件夹/文件。
请帮我解决这个问题。我在网上搜索,但无法找到确切的解决方案。
答案 0 :(得分:0)
似乎是一个参考/位置错误。通常,您不应将node_modules
添加到存储库,因为每次都应使用npm install
安装依赖项。尝试重新创建存储库并将node_modules
退出。