将gitignore中的更新同步到git仓库

有时候我们gitignore文件中写错了一些条目,知道commit的时候才发现。有时修改gitignore发现没有作用。
需要运行以下代码:

1
2
3
4
5
6
# rm all files
git rm -r --cached .
# add all files as per new .gitignore
git add .
# now, commit for new .gitignore to apply
git commit -m ".gitignore is now working"