原因.gitignore中只能忽略那些没有被track的文件,如果某些文件已经被纳入了版本管理,则修改该文件是无效的。解决的办法是先删除本地缓存,然后再提交
git rm -r --cached .
git add .
git commit -m 'update .gitignore'
原因.gitignore中只能忽略那些没有被track的文件,如果某些文件已经被纳入了版本管理,则修改该文件是无效的。解决的办法是先删除本地缓存,然后再提交
git rm -r --cached .
git add .
git commit -m 'update .gitignore'
本文标题:sourceTree 中更改.gitignore文件不生效解决办
本文链接:https://www.haomeiwen.com/subject/pwgyhxtx.html
网友评论