git学习---去除版本控制

本地这样去除文件夹 node_modules 的版本关联:
执行:git rm -r --cached "node_modules/"
提交: git commit -am 'remove node_modules folder all file out of control'
推送:git push
原文地址:https://www.cnblogs.com/lishidefengchen/p/8533638.html