背景:
一开始刚新建完项目后,我们会将项目代码交由 Git 来托管,但是很多小伙伴还没有新建好 .gitignore 文件就提交到远端仓库了,然后你下次突然记起来了,想要加上 .gitignore 文件,但是,因为之前已经提交过了,所以你即使现在加上了,东西还会在远端的。

Git提示:

error: Your local changes to the following files would be overwritten by merge:
        .idea/workspace.xml

现象:
切换分支或者提交代码都没法完成:
报错解决:your local changes to the following files would be overwritten by merge: .idea/workspa_ide
解决办法:
将远端提交的文件给删掉,删除指令为:

git rm -r --cached .idea

搞定之后再操作就可以了。