In my personal git repo, I have a directory that contains thousands of small images that are no longer needed. Is there a way to delete them from the entire git history? I h
git-filter-branch by default saves old refs in refs/original/* namespace.
refs/original/*
You need to delete them, and then do git gc --prune=now
git gc --prune=now