Git Without the Magic: A Deep Dive into Its Object Store

Hello there , back with another blog about git ,
This blog does not deals with the introductory part of git, I expect you to have clear understanding of some basic git commands like git init, git add, git commit .
Need an intro on git follow this Lets-learn-git
We all know how git is essential tools for any software . Git is the most powerful distributed version control system which was developed by Linus Torvalds ( a Finish-American software engineer) in 2005. Since then git has evolved a lot and became the most essential part of developers' life.
Let’s learn how the git works internally under the hood . remember when we use git commands like git add , git commit , git push we know first git sends the changes to stage area and then it commits those using an commit message . But ever wondered what actually happening , how the actual engineering happens .
So let’s get started
To understand the git internals we have to first go through .git folder . Every time you initiate git in your project folder It actually creates a .git hidden folder in your repository / Directory . Everything in git works under this folder .
Until then, keep hustling to be busy 💪💪
“Learning Git is a journey. I’m on the same path as you. If you want to learn together —
Continue this journey with me @coder_deb🚀”

