• .gitignore에서 분명 node_modules를 무시하라고 명시해줬는데 $ git status 를 하면 해당 변경분에 해서 표시를 해줬다.
  • 이럴때는 git의 cahce를 초기화 해주면 된다.
$ git rm -r --cached .
$ git add .
$ git commit -m "fixed untracked files"

+ Recent posts