Git 清除历史已提交文件、永久删除文件
需求分析
因为不小心提交了配置文件到github
中,我尝试在.gitignore
中添加过滤文件,可也只是在当前commit中删除了,历史提交的还是存在的,所以采用如下方法
step 1
git filter-branch --force --index-filter "git rm -rf --cached --ignore-unmatch filename" --prune-empty --tag-name-filter cat -- --all
step2
rm -rf .git/refs/original && git reflog expire --expire=now --all
git gc --prune=now
step 3
git push --force
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。