StephenGrider / FullstackReactCode

Companion repo to https://www.udemy.com/node-with-react-fullstack-web-development
1.39k stars 1.17k forks source link

🚩 Create .gitignore, and remove node_modules folder #3

Open ummahusla opened 7 years ago

ummahusla commented 7 years ago

It's not really a good practice to keep no modules in the git repository.

Rushan-Chen commented 6 years ago

About how to create .gitignore

You can reference the .gitignore template: Node.gitignore 'node_modules/' is added in this '.gitignore'

About how to remove node_modules

git rm -r --cached node_modules git commit -m 'Remove the now ignored directory node_modules' git push origin master Then check your repository.

aemal commented 6 years ago

@StephenGrider can you plz implement this issue as I just took your course and love to use this as a boilerplate for most of my students?

ummahusla commented 6 years ago

@aemal Stephen has great courses, but lack of response on his repositories is a bit frustrating.

hassan-kassim commented 5 years ago

check the repository with each push.

mussacharles60 commented 3 years ago

Add node_modules/ to your .gitignore file

ganeshXb commented 3 years ago

How to Create .gitignore and add node_modules to it

How to remove node_modules from your repo after adding it to .gitignore

jsteave commented 2 years ago

I am also here for the solution of this issue with this #gitignore file To Remove node_modules Folder

joaoavila1987 commented 1 year ago

pra min funcionou bem. obrigado