Day06 of #90DaysOfDevOps Challenge: Learn Git with me

Day06 of #90DaysOfDevOps Challenge: Learn Git with me

Hello, and welcome to Day 06 of our Challenge. Today, we are going to dive deep into the world of Git, a powerful version control system that is essential for developers.

Git allows multiple people to work on a project simultaneously without interfering with each other's work. It keeps track of every change made to the code, enabling you to revert to previous versions if something goes wrong.

We will cover the basics of Git, including how to initialize a repository, commit changes, and push those changes to a remote repository. By the end of today's article, you will have a solid understanding of how to use Git to manage your code efficiently.

Let's get started🚀!

What is Git?

Git is a distributed version control system designed to help developers manage and track changes in their code throughout the software development process. It provides a robust framework that allows multiple developers to collaborate on the same project simultaneously without interfering with each other's work. This is achieved through features like branching and merging, which enable developers to work on separate features or fixes in isolation before integrating their changes back into the main codebase.

One of the key advantages of Git is its ability to maintain a comprehensive history of all changes made to the code. This means that every modification, addition, or deletion is recorded, allowing developers to revert to previous versions if something goes wrong or if they need to understand the evolution of the project. Git also supports distributed workflows, meaning that each developer has a complete copy of the repository, including its entire history, on their local machine. This not only enhances collaboration but also ensures that the project can be recovered in case of a central server failure.

How to use Git.?

Firstly, you have to install git on your local machine from https://git-scm.com/

Create a New Repository: To set up a new Git repository, go to your project directory in the terminal and run

git init

The git init command sets up a new Git repository in your project directory. When you run git init, it creates a hidden .git directory that keeps track of all the changes in your project.

Clone an Existing Repository: If you want to work on an existing project, you can clone it

git clone https://github.com/username/reponame.git

This command is used to create a local copy of a remote Git repository. Basically, you're downloading all the files, branches, and commit history from the repository hosted on GitHub.

Track Changes: To track new or modified files

git add filename

This command stages a specific file (filename) to be included in the next commit. This means it tells Git to track changes made to the file and prepare it to be committed to the repository.

To commit changes, include a descriptive message:

git commit -m "Your commit message here"

Push Changes to a Remote Repository: To share your changes, push them to the remote repository

git push origin main

Some Essential Git Commands Every Beginner Should Know

  • git status: Check the current status of your working directory.

  • git log: View the commit history.

  • git diff: Show changes between commits or working directory.

  • git stash: Temporarily save changes that aren’t ready to commit.


As I delved into learning about Git, it provided me with a solid understanding of how to manage and track changes in code efficiently, significantly improving collaboration and version control in my projects.

Stay tuned for more insights as I continue my #90DayOfDevOps challenges. If you have any questions or tips, feel free to share them in the comments. Let’s keep learning and growing together! 🚀