Maxat Akbanov's blog
Maxat Akbanov's blog
Follow
Follow
homeAWSkubernetesAnsiblebashSQLGo
Series

git


Articles in this series

Git workshop: git checkout-index command

Sep 16, 20232 min read

The git checkout-index command is a lesser-known but occasionally useful Git command. It allows you to check files out of the index (the staging area)...

Git workshop: git checkout-index command

Index manipulation with git read-tree command

Sep 16, 20234 min read

git read-tree is a lower-level command that provides foundational functionality upon which more user-friendly commands are built. At its core, git...

Index manipulation with git read-tree command

Tracked, Untracked, and Ignored: An Exploration with git ls-files

Sep 11, 20234 min read

The git ls-files command is used in Git to display detailed information about files that are tracked by Git in a repository. It's very helpful when...

Tracked, Untracked, and Ignored: An Exploration with git ls-files

Git Tree Object

Sep 8, 20233 min read

In Git, the term "tree" refers to a tree object. A tree object represents a directory and serves as a container for other tree objects and blob...

Git Tree Object

The Structure of Git Blob Objects

Sep 4, 20232 min read

In Git, a blob (short for "binary large object") is used to store the content of a file. A blob is essentially a snapshot of the content of a file at...

The Structure of Git Blob Objects

Git workshop: BLOB object type

Aug 29, 20234 min read

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,...

Git workshop: BLOB object type