govkill.hashnode.devInside Git: How It Works and the Role of the .git FolderWhat is .git Folder? When you run git init, Git creates a hidden .git folder. This folder stores all history, commits, and data.If it’s deleted → your repo is gone. .git = Git’s database Inside .git (Simplified) .git/ │ ├── objects/ → Stores all...Jan 26·2 min read
killer6969.hashnode.devGit for Beginners: Basics and Essential CommandsWhat is Git ? Git is basically a VCS (version control system) and a tracker that records who made changes to the code. You can think of it as a tool to save your work history and collaborate with others. Why Git is Use? Git is basically used for coll...Jan 24·3 min read