ToDoista icon indicating copy to clipboard operation
ToDoista copied to clipboard

fixed #73 removed tracking of node_modules in backend folder

Open saikiranrudra opened this issue 3 years ago • 0 comments

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 
  1. 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:

  • [x] Have you followed the Contribution guide?
  • [x] Have you checked to ensure there aren't other open Pull Requests for the same update/change?
  • [ ] Have you made corresponding changes to the documentation?
  • [x] Your submission doesn't break any existing feature.
  • [ ] Have you lint your code locally prior to submission?

Screenshots (if appropriate):

saikiranrudra avatar Jul 07 '21 05:07 saikiranrudra