Deleting big files from git history

1 minute read

I warned you: this article is about operations that will overwrite git history. Be careful what you’re doing and backup your repository.

Sometimes big files are getting in the way to the git repository. This could happen because of a careless commit or the file originally was very small, but grew by time: for example a log file. Whatever the reason, you might want to get rid of it once and for all because it’s slowing down others to clone the repository and uses too much space on the git server.

Deleting a file from history takes a lot of time. On big repositories with large binary blobs, it could be a memory hungry overnight process. To delete dev/database.sql from the history:

git filter-branch --force --index-filter "git rm --cached --ignore-unmatch dev/database.sql" --prune-empty --tag-name-filter cat -- --all

Optionally, to save space locally, otherwise you have to wait 90 days until git clears the garbage out from the reflog:

git reflog expire --expire=now --all
git gc --prune=now

Then force push it to the remote repository:

git push origin --force --all
git push origin --force --tags

There is a backup folder git creates which you can now delete:

rm -rf .git/refs/original/

After the remote origin is up to date, you have to tell the other developers to get the changes, they should run:

git fetch
git reset origin/master --hard

Updated:

Comments