I have a huge git repo that eventually want to clean up with bfg.
But first, I want to track down and remove files in the HEAD
which git treats as binary...
So, what i'm looking for is a command to find all files in the HEAD that git treats as binary.
These didn't help:
- List all text (non-binary) files in repo < I am looking for binary files. not text files.
- Git find all binary files in history < I only care about the HEAD
- http://git.661346.n2.nabble.com/git-list-binary-and-or-non-binary-files-td3506370.html < I tried those commands and they don't help.
Thank you in advance for your help.