Feb 13 · 5 min read · What is Git and why is it used? Git, created by Linus Torvalds in 2005, is something we call a version control system or VCS. Now what is a VCS, you may ask? A VCS is a software tool that helps manage changes to source code (or any data) over time. ...
Join discussionFeb 13 · 3 min read · Have you ever worked on a document, made a mistake, and wished you could hit "Undo" but you had already saved and closed the file? Or maybe you ended up with files named project_final.zip, project_final_v2.zip, and project_REAL_FINAL_USE_THIS.zip? Gi...
Join discussion
Feb 10 · 5 min read · Introduction to Git Git was developed by Linus Torvalds in 2005. He created it to help manage the development of the Linux kernel after a dispute with a proprietary version control system called BitKeeper. Git was designed to be: Fast: Handles large...
Join discussionJan 31 · 9 min read · In the world of software development working together and keeping track of changes is really important. Think about it you have lots of developers working on the project at the same time. So how do they make sure they do not overwrite the work of dev...
Join discussionJan 31 · 5 min read · Introduction None of us is as smart as all of us, but without a map, a crowd is just a collision waiting to happen. Most of us have heard about git or Github somewhere in our life when choosing to align with the world of computers.. but most beginn...
Join discussionJan 31 · 3 min read · What is Git? Git is a Distributed version control system (DVCS) that is used to track every changes in our source code and other files. In simple words, Git help developer by saving the current versions of their work so we can easily look back at pre...
Join discussionJan 30 · 4 min read · What is Git? Git is a distributed version control system that helps developers track changes in their code over time. Think of Git like a save system in a video game: You can save your progress Go back to an older version if something breaks Work ...
Join discussionJan 30 · 2 min read · When I first saw git it felt like magic, file change, commit appear and history preserved. But behind the scenes git follows a very simple and powerful model. Let's understand that in this article. How Git Works Internally? In simple terms, git is a ...
Join discussionJan 30 · 4 min read · Why do developers even need Git? Imagine you are working on a project. You create a file, edit it, break something, fix it again… and suddenly you wish: 👉 “I want my old working version back.” 👉 “I want to see what I changed yesterday.” 👉 “I want ...
Join discussion