Git ##*As i am facing problem i have initialized git repository using
git init but there is no git ignore file anyone who can guide me i want to make my git not to monitor some files like node modules folder etc thanks in advance*
git init but there is no git ignore file anyone who can guide me i want to make my git not to monitor some files like node modules folder etc thanks in advance*
you can add the .gitignore file manually. See there for usefull template: https://github.com/github/gitignore
You can create the ignore file by touch .gitignore
in git bash.
Here is a template ignore file for node:
https://github.com/github/gitignore/blob/7293c14345c205c679722364a01b88d331e862ff/Node.gitignore#L41