node_modulesディレクトリを無視しない.gitignoreで問題が発生しています。
これが私の.gitignoreファイルです:
*~
~*
*.log
images/
images/*
images/**/*
.idea/
.idea/*
import_errors/
output/
output/*
node_modules/
node_modules/*
uploads/
downloads/
tmp/
.DS_Store
!.keep
!*/
また、コマンドを実行してgit-indexを更新し、インデックスからフォルダーを削除してみました
$ git rm --cached node_modules
fatal: pathspec 'node_modules' did not match any files
$ git update-index --assume-unchanged node_modules
fatal: Unable to mark file node_modules
通常は、これら2つのコマンドを発行するだけですが、エラーが発生し続けます。最初のコマンドはファイルのステージングを解除し、2番目のコマンドはgitインデックスを更新してファイルの追跡を停止することを想定しています。しかし、何らかの理由でそれは起こらず、他に何が間違っているのかわかりません。