当某个文件已被git管理时再向.gitinore
中添加该文件将会无效,可以删除该文件的缓存再提交,
git rm -r --cached 文件/文件夹名
git add .
git commit -m 'update .gitinore'
也可使用.
来删除项目下所有文件缓存再提交,但全量操作较为危险且可能会丢失一些未提交的内容,
不小心误删了可以git reset HEAD^
回退上一个版本。
git rm -r --cached .
git add .
git commit -m 'update .gitinore'