📌  相关文章
📜  如何从 git 中删除 node_modules - Shell-Bash 代码示例

📅  最后修改于: 2022-03-11 14:51:18.298000             🧑  作者: Mango

代码示例2
remove node_modules
git rm -r --cached node_modules

git commit -am "node_modules be gone!"

git push origin master