Jan 15 · 4 min read · What we are going to discuss : What is Git ? Why Git is used ? Git Basics and Core Terminologies Common Git Commands A Basic Developer Workflow Using Git What is Git ? Git is a version control system which was designed to track every change yo...
Join discussionApr 11, 2025 · 5 min read · 🧠 What is Git? Git is an open-source, distributed version control system that tracks changes in your project over time by taking snapshots on every commit. It lets multiple developers collaborate effectively, work on different features, and revisit ...
Join discussion
Jan 29, 2025 · 1 min read · TL;DR: Commands usage for git commit and git log git add Add the files to the staging area Usage git add <file1>…<filen>: to add the files git commit Add the files to the local repository(commiting). Note: requires commit message Usage git commit -m:...
Join discussion
May 5, 2024 · 8 min read · In our journey through Git so far, we've covered the fundamentals that form the backbone of any developer's daily workflow. We've explored how to initialize repositories, create and manage branches, collaborate with teammates through remote repositor...
Join discussion
Nov 2, 2023 · 8 min read · Let's say I wanted to create a calculator app. I have created a shell script using "vim" command "vim calculator.sh" In this "calculator. sh" file I have added an "additional functionality". Install Git from the official Git website at https://...
Join discussion
Jul 29, 2023 · 2 min read · In the previous article, we discussed how to create and merge branches in Git. In this article, we will see how to inspect and compare the commits made in different branches. Git Log The git log command can be used to view the commit history for all ...
Join discussion
Jun 6, 2022 · 2 min read · Every now and then a bug is introduced with a new file added to the repo. How do we track down when this file was first committed and any additional commits to this file along the way? There are many, many ways of doing this in git. One of those way...
Join discussion