Git workshop: BLOB object type
In Git, data is stored as objects. Each object is identified by a unique SHA-1 hash. There are several types of objects in Git: commit, tree, blob, and tag. Among these, the "blob" object type represents the content of a file. A blob stands for "bina...
Aug 29, 20234 min read35

