Remove gitignored files from remove
Remove gitignored files from remove
Changes
- Removed files from
.gitignore
from remove
Fixes
If git will still try to add the ignored files (node_modules, dist and others) run the following commands:
Remove cached items
git rm --cached -r .
Commit every changed file
git add . &&
git commit -m "Removed Ignored files" &&
git push