发布于 2年前

移除Git仓库的node_modules

一般情况下我们是不需要把node_modules提交到Git仓库。如果不小心提交node_modules到git仓库,可以按一下步骤删除仓库的node_modules:

1、在.gitignore文件添加node_modules。避免后续误把node_modules提交到git仓库。

2、按顺序执行以下命令:

git rm -r --cached node_modules
git commit -m '移除node_modules文件夹'
git push origin master
©2020 edoou.com   京ICP备16001874号-3