“Как удалить node_modules из git” Ответ

Как удалить node_modules из git

# Do the below steps -
# Make .gitignore file.
# Run below commands in your terminal

git rm -r --cached node_modules

git commit -am "node_modules be gone!"

git push origin master
Salo Hopeless

Как удалить модули узлов с GitHub

remove node_modules
git rm -r --cached node_modules

git commit -am "node_modules be gone!"

git push origin master
Jungle Kangaroo

Ответы похожие на “Как удалить node_modules из git”

Вопросы похожие на “Как удалить node_modules из git”

Больше похожих ответов на “Как удалить node_modules из git” по Shell/Bash

Смотреть популярные ответы по языку

Смотреть другие языки программирования