Is there a way to tell which files were actually removed by --strip-blobs-bigger-than? #558
-
Is there a way to tell which files it actually removed? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
If you run |
Beta Was this translation helpful? Give feedback.
If you run
git rev-list --all --objects --filter=object:type=blob
, this will list all files in a repository, throughout its history, with both the file hash and the path. That means you can run that command before and after running yourgit filter-repo
command, and compare the output; you should find that the only changes are the files that have been deleted are not listed in the rewritten repository.