GitHub:LICENSE.txt:没有这样的文件或目录

时间:2014-07-23 12:09:53

标签: git github windows-7

我是GitHub的新手,我想通过创建存储库来在github上托管我的代码。所以,我按照以下步骤操作:

  1. 使用GitHub
  2. 创建了一个远程存储库
  3. 使用" git init"创建了一个本地存储库。命令到我的本地项目目录
  4. 使用" 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
    
  5. 注意:我可以通过执行相同的命令添加所有其他文件夹/文件。

    请帮我解决这个问题。我在网上搜索,但无法找到确切的解决方案。

1 个答案:

答案 0 :(得分:0)

似乎是一个参考/位置错误。通常,您不应将node_modules添加到存储库,因为每次都应使用npm install安装依赖项。尝试重新创建存储库并将node_modules退出。