[GitHub] node_modules 디렉토리 제거

민수·2022년 12월 20일
0
post-thumbnail

원격 저장소의 node_modules 제거하기

원격 저장소의 파일 제거

git rm --cached [파일명]

원격 저장소의 디렉토리 제거

git rm --cached -r [디렉토리명]

원격 저장소의 node_modules 삭제하기

git rm --cached -r node_modules

적용하기

  • .gitignore 작성
node_modules/
  • push
git add .
git commit -m "remove: node_modules 디렉토리 제거"
git push origin main

0개의 댓글