Git Returns a Large PUSHed File

I accidentally added (git add *) a large file (200+ MB) to the git repository. I commit changes and push them.

When I tried to pull the changes on some other copy, it was too long. I canceled pull, deleted the file (git rm file), committed and pressed again. But he still pulls another working copy for too long.

So how to remove it completely from the main repo?

+4
source share
1 answer

The object is still in the repo, and the remote is trying to load this object when it is pulling.

This recipe on github should help remove the object from the repo history.

+4
source

All Articles