AAAarav Ahujainhow-git-internally-works.hashnode.dev·Jan 1 · 2 min readHow Git Internally Works: A simple guideHow Git Works Internally Git works by storing files as blobs (content with hashes), directories as trees (listing files), and snapshots as commits (with history links), all in .git/objects. Branches are refs pointing to commits, the index stages chan...00
AAAarav Ahujainwhyversioncontrolexists-thependriveproblem.hashnode.dev·Dec 30, 2025 · 2 min readWhy Version Control Exists: The Pendrive ProblemWhy Version Control Exists Version control system (VCS) is used to track changes in your code and code files systematically. It helps in making different versions of a program. It can also revert to previous versions of a software, if there was a fla...00
AAAarav Ahujaingit-and-beginner.hashnode.dev·Dec 28, 2025 · 3 min readGit for Beginners: Basics and Essential CommandsWhat is Git? Git is a DVCS (Distributed Version Control System) that helps you manage different versions of a software being developed. It is easy to use when you know about it, it really helps in managing different versions of a software and revert ...00