Is it possible to get info about how much space is wasted by changes in every commit — so I can find commits which added big files or a lot of files. This is all to try to reduce git repo size (rebasing and maybe filtering commits)
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Forgot to reply, my answer is:
|
|||||||||||||
|
|
Personally, I found this answer to be most helpful when trying to find large files in the history of a git repo: Find files in git repo over x megabytes, that don't exist in HEAD |
|||
|
|
|
You could do this:
This will show the largest files at the bottom (fourth column is the file (blob) size. If you need to look at different branches you'll want to change HEAD to those branch names. Or, put this in a loop over the branches, tags, or revs you are interested in. |
|||||
|
|
|
||||
|
|
git gcoccasionally, possibly asgit gc --aggressive– Hasturkun Aug 17 '09 at 7:33git gc(andgit gc --prune);--aggresivecan even give worse results (but usually shouldn't), and is usually not worth it. – Jakub Narębski Aug 17 '09 at 19:55