git rewrite history - Git: How to delete committed file permanently? -
i have committed file shouldn't in git repository. have deleted , committed deletion, can still access file via git history.
how delete committed file permanently, there no trace of it?
you can remove permanently file using filter-branch
. apply command in argument in every revision of repository.
git filter-branch --tree-filter 'rm -rf your_file' head
this detailed post might you. git doc pretty helpful too.
as mentioned in comments, need git gc
clean local commits , git push
to update remote repository.
Comments
Post a Comment