📌  相关文章
📜  如何从 github 中删除节点模块 - Shell-Bash 代码示例

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

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

git commit -am "node_modules be gone!"

git push origin master