共计 194 个字符,预计需要花费 1 分钟才能阅读完成。
git 删除已上传的 node_modules 文件
新建我的项目没配置 gitignore 文件,导致 node_modules 文件上传到了 git 仓库,上面是解决办法,能够删除仓库已上传的 node_modules 文件:
按程序执行以下命令:
git rm -r –cached node_modules
git commit -m ‘delete node_modules file’
git push origin master
正文完