git

🏠 Homepage

⬅️ Previous: 🔧 Creating Your First GitHub Repository

6. 🔄 Basic Git Workflow

first Github Repository

✅ Setup & Configure Git (First Time Setup)

git config --global user.name "Your Name"
git config --global user.email "youremail@example.com"

This configures your identity for commits.

create README.md file

Example README Content: Markdown file format

# My First Repository
This is a practice repo for learning Git and GitHub.

🗂️ Initialize Repository

Create a Repository

➡️Up Next: 📂 Understanding Repositories (Local vs Remote)