I stupidly checked in a 200+M useless file into my repo one month ago, now all my co-worker (internationally) has the large file now. I am wondering if there is a good way of purging this large file for everyone transparently using git hooks.
I can use either bfg or git filter-branch
in the git hook to remove the big file, but it seems that a force push is required afterward, which is risky to the repo. Have anyone here done this before, what's the entire workflow and configuration looks like ?
Is there better idea than using git hook?
Thanks in advance!