git 修改 .gitignore 不生效
Posted dreamcatcher-zp
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了git 修改 .gitignore 不生效相关的知识,希望对你有一定的参考价值。
在使用 Git 时候,发现在 .gitignore 文件中添加内容后,推送成功后并没有生效。
出错原因:
.gitignore 文件的内容不对历史文件生效
情景复现:
1. 远端已经有了 .idea 配置文件夹 2. 在 .gitignore 中添加 .idea 3. commit && push 这个 .gitignore 文件的更改 4. 发现远端仓库中仍有 .idea 的文件夹,并未被忽略掉
解决方法:
// 清除本地缓存 git rm -r --cached . // 重新 trace file git add. // 重新提交 git commit -m "update .gitignore" // 推送远端 git push origin master
参考资料:
https://blog.csdn.net/mingjie1212/article/details/51689606
以上是关于git 修改 .gitignore 不生效的主要内容,如果未能解决你的问题,请参考以下文章