Day-30: Git Basics (clone, add, commit, push, pull, init)


🧠 What is Git?

Git is a distributed version control system used to track changes in source code during software development.

It helps teams collaborate, manage versions, and maintain project history efficiently.


⚙️ 1️⃣ Git Workflow Overview

Here’s the basic Git workflow developers follow daily 👇

Local System → Git Repository → Remote Repository (GitHub/GitLab)

🧩 2️⃣ Step-by-Step Git Workflow

🔹 Step 1: Initialize Repository

git init

🔹 Step 2: Add Files to Staging Area

git add .