已经在git忽略文件中写了目录信息,可是还是会产生git status 记录
原因: 本地git缓存造成
git rm -r --cached . # 清除缓存命令 git add . git commit -m 'update .gitignore' git push -u origin master