修改 .gitignore 文件 立即生效
Git-分支-分支的新建与合并
有时候需要突然修改 .gitignore 文件,随后要立即生效
1 清除缓存
git rm -r --cached .
2 重新trace file
git add .
3 提交和注释
git commit -m "update .gitignore"
4 可选,如果需要同步到remote
git push origin master