gitignore 不起作用的解决办法

创建了.gitignore文件,在多个仓库中初始化和切换,发现过滤规则不生效,真是醉了。翻查百度,解决核心在于清除本地缓存,方法如下:

1
2
3
4
git rm -r --cached .
git add .
git commit -m 'update .gitignore' //windows 使用的命令是
git commit -m "update .gitignore" //需要使用双引号
--------------本文结束 感谢您的阅读--------------