git 删除错误提交的文件

idea 项目 ,错误将 工具生成的 .idea 里的文件提交到 仓库
想要仓库里删除该文件,而本地继续保留
可以用如下git 命令

git rm --cached filename

看看该参数的说明

       --cached
           Use this option to unstage and remove paths only from the index. Working tree files, whether modified or not,
           will be left alone.

参考地址
http://www.findme.wang/share/detail/id/437.html

你可能感兴趣的:(git 删除错误提交的文件)