How to show the size of each commit with “git log”?
The “size” of a commit can mean different things. If you mean how much disk storage it takes up… that’s very tricky to tell in Git and probably unproductive. Whereas something like SVN stores commits as deltas, when you change a file in Git it stores a new copy of the file as an object … Read more