garimasingh128 / ToDoista

A ToDo app :orange_book: made using MERN. Keep a track of your activities on a single click. :thought_balloon: :computer:
https://vigorous-kalam-504459.netlify.app
21 stars 39 forks source link

fixed #73 removed tracking of node_modules in backend folder #76

Open saikiranrudra opened 3 years ago

saikiranrudra commented 3 years ago

What is the change?

Since backend/node_modules was committed previously that's why even though it was ignored in .gitignore it was getting tracked

The following thing I have made to fix it

  1. I removed it from the cached using
    git rm --cached  node_modules 
  2. deleting the node_modules committed the changes

What does it fix/add?

node_modules in backend will not be tracked from now but not removed from history need to be deleted and commit to not be shown in future clones

How was it tested?

  1. Deleted backend/node_modules and did npm install
  2. Did git status to see weather backend/node_modules is tracked or not. it seen that backend/node_modules is not getting tracked

Submissions guide:

Screenshots (if appropriate):