Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save qkreltms/28e500baf7a0cbd81e8ea5ccca6e8cbc to your computer and use it in GitHub Desktop.
Save qkreltms/28e500baf7a0cbd81e8ea5ccca6e8cbc to your computer and use it in GitHub Desktop.
깃허브에서 node_modules 제거하는 방법.
# .gitignore file에 node_modules 추가
git rm -r --cached node_modules
git commit -m 'Remove and ignore directory node_modules'
git push origin master
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment