I have an application which I am making
The App as usual have two parts
-> The frontend 
-> The Backend 
Both frontend and Backend are inside parent a folder which I initialised using git init.
ParentFolder 
--> Frontend 
--> Backend
// Git Initialisation is done on Parent folder
Now whenever I add module for frontend and backend and do git add, git commit, it is also committing the node module inside the frontend and backend.
[Question:] So i want git to ignore node modules folder in frontend and backend, So how can I achieve this?
 
     
    