IntelliJ IDEA 的 .idea 目录加入.gitignore无效的解决方法
Posted 我是你妈
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了IntelliJ IDEA 的 .idea 目录加入.gitignore无效的解决方法相关的知识,希望对你有一定的参考价值。
[转载]
无效的原因是:对应的目录或者文件已经被git跟踪,此时再加入.gitignore后就无效了,
解决办法:
先执行
[文件夹] git rm -r --cached .idea
[文件] git rm --cached demo-project.iml
再重新加入.gitignore文件
解决方法来源:http://stackoverflow.com/questions/9550437/how-to-make-git-ignore-idea-files-created-by-rubymine
以上是关于IntelliJ IDEA 的 .idea 目录加入.gitignore无效的解决方法的主要内容,如果未能解决你的问题,请参考以下文章