Sourcetree .gitignore文件无效的解决方法

在Sourcetree中修改.gitignore时不生效,这时候可以删除所有缓存重新提交便可解决。

step1.点击右上角的终端进入项目目录

step2.删除所有缓存:git rm -r --cached .

step3.重新添加所有文件:git add .

step4.提交:git commit -m 'ignore something'

 

你可能感兴趣的:(Git)