top | item 41483128

(no title)

archmaster | 1 year ago

This is pretty cool. Worth noting that Git does not actually only store full copies of files every time you make a change, this article I found does a really good job at explaining Git's packing: https://gist.github.com/matthewmccullough/2695758

discuss

order

glandium|1 year ago

It actually does. Until you run git gc or it runs automatically, and your blobs are packed.

masklinn|1 year ago

“Objects” rather than “blobs”, in git “blobs” means specifically file contents (/ unstructured as technically you can use blobs for arbitrary storage) but all objects can be delta’d during packing.