How Git Works Internally
The .git folder: the whole repo lives here
When you run, git init you create a .git directory. Everything Git needs to track and reconstruct your project is inside that hidden folder:
.git/objects/ - object storage (blobs, trees, commits, tags). Obj...
gurjotcodes.hashnode.dev5 min read