1

I want to see the current state of repo to know what is the current size of all tracked files like HTML, PHP CSS, JS, Images, PDF and all others.

Would like to get view something like this

enter image description here

And then I want to track changes in all these files type to know how much data is being removed or added.

Is there a tool for that?

Jitendra Vyas
  • 148,487
  • 229
  • 573
  • 852

1 Answers1

1

There is no Git native tool, beside:

But for a given checked out code base, you can run a tool like draw-my-project (also on GitHub), which does include such a graph. It is only for javascript project dependencies analysis though.
So a regular tree file analysis tool (example folder-size) would be closer to what you are looking for, again for a given checked out code.

http://www.folder-size.com/images/FolderSzie-Pie.png

VonC
  • 1,262,500
  • 529
  • 4,410
  • 5,250