Jan 30 · 7 min read · Introduction: Opening the Black Box You probably know Git and GitHub and have used a few commands, but for many developers Git still feels like a black box because what happens behind the scenes is not clear. Git is not magic. Inside that black box i...
Join discussion
Jan 30 · 4 min read · Git is like Ctrl + Z for your whole project—but better.When you’re coding (or writing anything), Git lets you save checkpoints.Made a mess? Just go back to the last good version. Git = the tool on your computer GitHub = where you store your project...
Join discussionJan 27 · 9 min read · Introduction Git is a helpful device for developers that lets them keep record of changes in their code and collaborate without any confusion. Instead of making several copies like project_final, project_final_v2, and project_final_really_final , Git...
Join discussion
Jan 28 · 11 min read · When you type git commit, have you ever wondered what actually happens behind the scenes? Most developers use Git daily without understanding its internal machinery. This article pulls back the curtain to reveal how Git works at a fundamental level, ...
Join discussionJan 24 · 2 min read · What is the Git? Git is the version control system. Git is the tool that help you track changes in your code. it track every little change or update in your code you make. You can always look back at previous version of your code if needed. it was cr...
Join discussionJan 23 · 4 min read · Have you ever thought how does git knows that we made a change, where does it store the changes. All this doesnt happen magically, for anything to happen in this world of technology it requires to exist and storage or database is a must for that exis...
Join discussion
Jan 19 · 4 min read · 1.What we will learn in this blog? In this blog we will leanr what is git and why it is used.But our main focus is to learn basci git terminologies and commands used for version control. 2. What is Git? Git is a software used for version control by d...
Join discussion
Jan 17 · 5 min read · Introduction Most beginners start learning Git by memorizing commands like git add and git commit.That works for a while, but at some point Git starts feeling confusing and unpredictable. Git actually becomes much easier when you understand what is h...
Join discussion
Jan 17 · 4 min read · Git is a really handy and helpful tool which helps as a version control system for developers.By version control, in simple words, i mean HISTORY + BACKUP + TEAMWORK tool.HISTORY : Tracks every changes that you or your team make.BACKUP: Those tracked...
Join discussion