I was trying to delete a file in a github repo that belongs to an old commit, specifically the 2nd one since the repo was created. Then someone tried to fix it and deleted the file in its workspace and pushed the change...
It is a 500 mb rar file that someone thought it was a good idea to push in 2012 and now we have the need of get rid of it.
I have tried
- rebasing/cherry-picking: http://clock.co.uk/blog/deleting-a-git-commit
- deleting: https://stackoverflow.com/a/14329983 and https://stackoverflow.com/a/8741530
But any of these worked for me. It seems to be a .pack file holding it.
The question is: can I really delete the file? Otherwise, are there any options to set up a new repo without loosing commit history?
Thanks in advance.