.gitignore 不生效解决办法

解决方法

git 清除本地缓存(改变成未 track 状态)

1
2
3
git rm -r --cached .
git add .
git commit -m 'update .gitignore'