- make sure you have
.gitignore
file or you can do
touch .gitignore
- add the unwanted files to it
node_modules
dist
src/styles
# or any other ones(later we will)
- we need to remove the node_modules folder from the git repository
git rm -r --cached node_modules
- commit your work
git commit -m 'Removed node_module 😉'
- push to Github
git push