-1

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*

Shamoon97
  • 332
  • 2
  • 12

2 Answers2

0

you can add the .gitignore file manually. See there for usefull template: https://github.com/github/gitignore

0

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

Chuck Lu
  • 173
  • 12