git에 올라간 node_modules 제거

EBinY·2022년 9월 1일
0
  • 수강하는 강의의 파일들을 git에 repo를 만들어 올리기로 함
  • 초기 파일들을 생성하고 repo에 push를 함
  • .gitignore 를 깜박하여 node_modules까지 전부 올라감
  • repo에 올라간 node_modules를 제거해보자
$ git rm -r --cached node_modules
$ git commit -m 'node_modules 제거'
$ git push origin master
  • rm을 통해 캐쉬된 node_modules를 제거하고
  • 재 commit을 한 후 다시 push를 해주었다

0개의 댓글